#[repr(C, u8)]pub enum ResultDirEntryVecFileError {
Ok(DirEntryVec),
Err(FileError),
}Variants§
Ok(DirEntryVec)
Err(FileError)
Implementations§
Source§impl ResultDirEntryVecFileError
impl ResultDirEntryVecFileError
pub fn into_result(self) -> Result<DirEntryVec, FileError>
Trait Implementations§
Source§impl Clone for ResultDirEntryVecFileError
impl Clone for ResultDirEntryVecFileError
Source§fn clone(&self) -> ResultDirEntryVecFileError
fn clone(&self) -> ResultDirEntryVecFileError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ResultDirEntryVecFileError
impl Debug for ResultDirEntryVecFileError
Source§impl From<Result<DirEntryVec, FileError>> for ResultDirEntryVecFileError
impl From<Result<DirEntryVec, FileError>> for ResultDirEntryVecFileError
Source§fn from(o: Result<DirEntryVec, FileError>) -> ResultDirEntryVecFileError
fn from(o: Result<DirEntryVec, FileError>) -> ResultDirEntryVecFileError
Converts to this type from the input type.
Source§impl From<ResultDirEntryVecFileError> for Result<DirEntryVec, FileError>
impl From<ResultDirEntryVecFileError> for Result<DirEntryVec, FileError>
Source§fn from(o: ResultDirEntryVecFileError) -> Result<DirEntryVec, FileError>
fn from(o: ResultDirEntryVecFileError) -> Result<DirEntryVec, FileError>
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ResultDirEntryVecFileError
impl RefUnwindSafe for ResultDirEntryVecFileError
impl Send for ResultDirEntryVecFileError
impl Sync for ResultDirEntryVecFileError
impl Unpin for ResultDirEntryVecFileError
impl UnwindSafe for ResultDirEntryVecFileError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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