Struct swipl::context::Frame

source ·
pub struct Frame { /* private fields */ }
Expand description

Context type for a prolog frame.

Examples

Discard a frame through dropping:

use swipl::prelude::*;
fn main() -> PrologResult<()> {
   // create a context
   let engine = Engine::new();
   let activation = engine.activate();
   let context: Context<_> = activation.into();

   let term = context.new_term_ref();

   {
       let frame = context.open_frame();
       term.unify(42_u64)?;
   }

   assert!(term.is_var());

   Ok(())
}

Discard a frame explicitely:

use swipl::prelude::*;
fn main() -> PrologResult<()> {
   // create a context
   let engine = Engine::new();
   let activation = engine.activate();
   let context: Context<_> = activation.into();

   let term = context.new_term_ref();

   let frame = context.open_frame();
   term.unify(42_u64)?;

   frame.discard();
   assert!(term.is_var());

   Ok(())
}

Close a frame:

use swipl::prelude::*;
fn main() -> PrologResult<()> {
   // create a context
   let engine = Engine::new();
   let activation = engine.activate();
   let context: Context<_> = activation.into();

   let term = context.new_term_ref();

   let frame = context.open_frame();
   term.unify(42_u64)?;
   let term2 = frame.new_term_ref();

   frame.close();
   assert_eq!(42_u64, term.get()?);
   // the following would result in a compile error:
   // term2.unify(42_u64)?;

   Ok(())
}

Rewind a frame:

use swipl::prelude::*;
fn main() -> PrologResult<()> {
   // create a context
   let engine = Engine::new();
   let activation = engine.activate();
   let context: Context<_> = activation.into();

   let term = context.new_term_ref();

   let frame = context.open_frame();
   term.unify(42_u64)?;

   let frame = frame.rewind();
   // term is a variable again so the following unification will succeed
   term.unify(43_u64)?;

   frame.close();
   assert_eq!(43_u64, term.get()?);

   Ok(())
}

Trait Implementations§

source§

impl Drop for Frame

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl ContextType for Frame

source§

impl FrameableContextType for Frame

source§

impl QueryableContextType for Frame

Auto Trait Implementations§

§

impl RefUnwindSafe for Frame

§

impl Send for Frame

§

impl Sync for Frame

§

impl Unpin for Frame

§

impl UnwindSafe for Frame

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.