Enum rsync_list::ParseErrorKind [−][src]
#[non_exhaustive]
pub enum ParseErrorKind {
AmbiguousLink {
name_and_target: Vec<u8>,
size: u64,
last_modified: DateTime<Utc>,
},
InvalidSyntax {},
UnknownEscape {
char: u8,
},
UnknownType {
char: u8,
},
}Variants (Non-exhaustive)
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields
Fields of InvalidSyntax
Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields
Fields of UnknownEscape
char: u8Non-exhaustive enum variants could have additional fields added in future. Therefore, non-exhaustive enum variants cannot be constructed in external crates and cannot be matched against.
Show fields
Fields of UnknownType
char: u8Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ParseErrorKind
impl RefUnwindSafe for ParseErrorKindimpl Send for ParseErrorKind
impl Send for ParseErrorKindimpl Sync for ParseErrorKind
impl Sync for ParseErrorKindimpl Unpin for ParseErrorKind
impl Unpin for ParseErrorKindimpl UnwindSafe for ParseErrorKind
impl UnwindSafe for ParseErrorKind