pub struct KgliteEmbedder { /* private fields */ }Expand description
Opaque handle for an embedder. See
KgliteGraph for the rationale on the
empty #[repr(C)] facade pattern — cbindgen renders only a
forward declaration; the actual state lives in
[EmbedderState].
Auto Trait Implementations§
impl Freeze for KgliteEmbedder
impl RefUnwindSafe for KgliteEmbedder
impl !Send for KgliteEmbedder
impl !Sync for KgliteEmbedder
impl !Unpin for KgliteEmbedder
impl UnsafeUnpin for KgliteEmbedder
impl UnwindSafe for KgliteEmbedder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more