pub enum SetTypes {
AddNumber,
SubNumber,
Number(u64),
String(String),
NewFile(TrackedFiles),
}
Variants§
Trait Implementations§
Source§impl TryFrom<&Set> for SetTypes
impl TryFrom<&Set> for SetTypes
Source§type Error = VersionError
type Error = VersionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&UpDown> for SetTypes
impl TryFrom<&UpDown> for SetTypes
Source§type Error = VersionError
type Error = VersionError
The type returned in the event of a conversion error.
Source§impl TryFrom<Set> for SetTypes
impl TryFrom<Set> for SetTypes
Source§type Error = VersionError
type Error = VersionError
The type returned in the event of a conversion error.
Source§impl TryFrom<UpDown> for SetTypes
impl TryFrom<UpDown> for SetTypes
Source§type Error = VersionError
type Error = VersionError
The type returned in the event of a conversion error.
impl StructuralPartialEq for SetTypes
Auto Trait Implementations§
impl Freeze for SetTypes
impl RefUnwindSafe for SetTypes
impl Send for SetTypes
impl Sync for SetTypes
impl Unpin for SetTypes
impl UnwindSafe for SetTypes
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