pub enum ChangeTypeEnum {
Changed,
Added,
Removed,
Unknown(u8),
}Expand description
ChangeTypeEnum (enum8).
Variants§
Changed
Changed = 0.
Added
Added = 1.
Removed
Removed = 2.
Unknown(u8)
A value not known to this codegen revision.
Implementations§
Trait Implementations§
Source§impl Clone for ChangeTypeEnum
impl Clone for ChangeTypeEnum
Source§fn clone(&self) -> ChangeTypeEnum
fn clone(&self) -> ChangeTypeEnum
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ChangeTypeEnum
Source§impl Debug for ChangeTypeEnum
impl Debug for ChangeTypeEnum
impl Eq for ChangeTypeEnum
Source§impl PartialEq for ChangeTypeEnum
impl PartialEq for ChangeTypeEnum
impl StructuralPartialEq for ChangeTypeEnum
Auto Trait Implementations§
impl Freeze for ChangeTypeEnum
impl RefUnwindSafe for ChangeTypeEnum
impl Send for ChangeTypeEnum
impl Sync for ChangeTypeEnum
impl Unpin for ChangeTypeEnum
impl UnsafeUnpin for ChangeTypeEnum
impl UnwindSafe for ChangeTypeEnum
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