pub struct FromPath<NI, P, Format>where
P: AsRef<Path>,
NI: Idx,
Format: InputCapabilities<NI>,
Format::GraphInput: TryFrom<InputPath<P>>,{ /* private fields */ }Auto Trait Implementations§
impl<NI, P, Format> Freeze for FromPath<NI, P, Format>where
<Format as InputCapabilities<NI>>::GraphInput: Sized,
P: Freeze,
PhantomData<NI>: Freeze,
PhantomData<Format>: Freeze,
impl<NI, P, Format> RefUnwindSafe for FromPath<NI, P, Format>where
<Format as InputCapabilities<NI>>::GraphInput: Sized,
P: RefUnwindSafe,
PhantomData<NI>: RefUnwindSafe,
PhantomData<Format>: RefUnwindSafe,
impl<NI, P, Format> Send for FromPath<NI, P, Format>where
<Format as InputCapabilities<NI>>::GraphInput: Sized,
P: Send,
PhantomData<NI>: Send,
PhantomData<Format>: Send,
impl<NI, P, Format> Sync for FromPath<NI, P, Format>where
<Format as InputCapabilities<NI>>::GraphInput: Sized,
P: Sync,
PhantomData<NI>: Sync,
PhantomData<Format>: Sync,
impl<NI, P, Format> Unpin for FromPath<NI, P, Format>where
<Format as InputCapabilities<NI>>::GraphInput: Sized,
P: Unpin,
PhantomData<NI>: Unpin,
PhantomData<Format>: Unpin,
impl<NI, P, Format> UnsafeUnpin for FromPath<NI, P, Format>where
<Format as InputCapabilities<NI>>::GraphInput: Sized,
P: UnsafeUnpin,
PhantomData<NI>: UnsafeUnpin,
PhantomData<Format>: UnsafeUnpin,
impl<NI, P, Format> UnwindSafe for FromPath<NI, P, Format>where
<Format as InputCapabilities<NI>>::GraphInput: Sized,
P: UnwindSafe,
PhantomData<NI>: UnwindSafe,
PhantomData<Format>: 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