pub struct DynamicGraph { /* private fields */ }Expand description
Dynamic computation graph
Implementations§
Source§impl DynamicGraph
impl DynamicGraph
Sourcepub fn start_recording(&self)
pub fn start_recording(&self)
Start recording operations
Sourcepub fn stop_recording(&self)
pub fn stop_recording(&self)
Stop recording operations
Sourcepub fn is_recording(&self) -> bool
pub fn is_recording(&self) -> bool
Check if recording
Trait Implementations§
Source§impl Debug for DynamicGraph
impl Debug for DynamicGraph
Auto Trait Implementations§
impl Freeze for DynamicGraph
impl RefUnwindSafe for DynamicGraph
impl Send for DynamicGraph
impl Sync for DynamicGraph
impl Unpin for DynamicGraph
impl UnwindSafe for DynamicGraph
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