pub enum RepositoryPathVerificationState {
ExistsNoIntegrityCheck,
ExistsIntegrityVerified,
ExistsIntegrityMismatch,
Missing,
}Expand description
Describes a repository path verification state.
Variants§
ExistsNoIntegrityCheck
The path exists but its integrity was not verified.
ExistsIntegrityVerified
The path exists and its integrity was verified.
ExistsIntegrityMismatch
The path exists and its integrity didn’t match expectations.
Missing
The path is missing.
Trait Implementations§
Source§impl Clone for RepositoryPathVerificationState
impl Clone for RepositoryPathVerificationState
Source§fn clone(&self) -> RepositoryPathVerificationState
fn clone(&self) -> RepositoryPathVerificationState
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 From<SinkWriterVerifyBehavior> for RepositoryPathVerificationState
impl From<SinkWriterVerifyBehavior> for RepositoryPathVerificationState
Source§fn from(v: SinkWriterVerifyBehavior) -> Self
fn from(v: SinkWriterVerifyBehavior) -> Self
Converts to this type from the input type.
impl Copy for RepositoryPathVerificationState
Auto Trait Implementations§
impl Freeze for RepositoryPathVerificationState
impl RefUnwindSafe for RepositoryPathVerificationState
impl Send for RepositoryPathVerificationState
impl Sync for RepositoryPathVerificationState
impl Unpin for RepositoryPathVerificationState
impl UnwindSafe for RepositoryPathVerificationState
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