pub struct BinaryInput<NI>where
    NI: Idx + ToByteSlice,{ /* private fields */ }Expand description
Reads a graph that has been written via
crate::graph_ops::SerializeGraphOp.
Trait Implementations§
Source§impl<NI> Default for BinaryInput<NI>where
    NI: Idx + ToByteSlice,
 
impl<NI> Default for BinaryInput<NI>where
    NI: Idx + ToByteSlice,
Source§fn default() -> BinaryInput<NI>
 
fn default() -> BinaryInput<NI>
Returns the “default value” for a type. Read more
Source§impl<NI> InputCapabilities<NI> for BinaryInput<NI>where
    NI: Idx + ToByteSlice,
 
impl<NI> InputCapabilities<NI> for BinaryInput<NI>where
    NI: Idx + ToByteSlice,
type GraphInput = PathBuf
Auto Trait Implementations§
impl<NI> Freeze for BinaryInput<NI>
impl<NI> RefUnwindSafe for BinaryInput<NI>where
    NI: RefUnwindSafe,
impl<NI> Send for BinaryInput<NI>
impl<NI> Sync for BinaryInput<NI>
impl<NI> Unpin for BinaryInput<NI>where
    NI: Unpin,
impl<NI> UnwindSafe for BinaryInput<NI>where
    NI: UnwindSafe,
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