pub enum ImportAction {
Create,
Update,
Skip,
Fail,
}Expand description
Action to be performed during import
Variants§
Create
Create new authentication entry
Update
Update existing authentication entry
Skip
Skip - no changes needed
Fail
Failed with error
Trait Implementations§
Source§impl Clone for ImportAction
impl Clone for ImportAction
Source§fn clone(&self) -> ImportAction
fn clone(&self) -> ImportAction
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 Debug for ImportAction
impl Debug for ImportAction
Source§impl<'de> Deserialize<'de> for ImportAction
impl<'de> Deserialize<'de> for ImportAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ImportAction
impl PartialEq for ImportAction
Source§impl Serialize for ImportAction
impl Serialize for ImportAction
impl StructuralPartialEq for ImportAction
Auto Trait Implementations§
impl Freeze for ImportAction
impl RefUnwindSafe for ImportAction
impl Send for ImportAction
impl Sync for ImportAction
impl Unpin for ImportAction
impl UnsafeUnpin for ImportAction
impl UnwindSafe for ImportAction
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