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)
This enum is marked as 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.
This variant is marked as non-exhaustive
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.
This variant is marked as non-exhaustive
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.
Fields of InvalidSyntax
This variant is marked as non-exhaustive
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.
Fields of UnknownEscape
char: u8This variant is marked as non-exhaustive
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.
Fields of UnknownType
char: u8