pub struct FollowStart<T>(/* private fields */);
Expand description
FollowStart wraps a Follow impl in a struct type. This can make certain programming patterns more ergonomic.
Implementations§
Trait Implementations§
Source§impl<T: Debug> Debug for FollowStart<T>
impl<T: Debug> Debug for FollowStart<T>
Source§impl<T: Default> Default for FollowStart<T>
impl<T: Default> Default for FollowStart<T>
Source§fn default() -> FollowStart<T>
fn default() -> FollowStart<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<T> Freeze for FollowStart<T>
impl<T> RefUnwindSafe for FollowStart<T>where
T: RefUnwindSafe,
impl<T> Send for FollowStart<T>where
T: Send,
impl<T> Sync for FollowStart<T>where
T: Sync,
impl<T> Unpin for FollowStart<T>where
T: Unpin,
impl<T> UnwindSafe for FollowStart<T>where
T: 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