pub enum Stub<'a> {
FileWithContent(&'a str, &'a str),
FileWithContentToBeTrimmed(&'a str, &'a str),
EmptyFile(&'a str),
FileWithPermission(&'a str, bool),
}Variants§
FileWithContent(&'a str, &'a str)
FileWithContentToBeTrimmed(&'a str, &'a str)
EmptyFile(&'a str)
FileWithPermission(&'a str, bool)
Auto Trait Implementations§
impl<'a> Freeze for Stub<'a>
impl<'a> RefUnwindSafe for Stub<'a>
impl<'a> Send for Stub<'a>
impl<'a> Sync for Stub<'a>
impl<'a> Unpin for Stub<'a>
impl<'a> UnwindSafe for Stub<'a>
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