pub enum DeployEventKind {
Write,
Delete,
RenameFrom,
}Expand description
DeployEventKind : What a deploy event did to the path it is recorded against: write (the path holds an item after the event), delete (it does not), or rename_from (the path was vacated by a rename to another path). Create and update are not distinguished. Omitted when no such event has been recorded for that side, which counts as no evidence.
What a deploy event did to the path it is recorded against: write (the path holds an item after the event), delete (it does not), or rename_from (the path was vacated by a rename to another path). Create and update are not distinguished. Omitted when no such event has been recorded for that side, which counts as no evidence.
Variants§
Trait Implementations§
Source§impl Clone for DeployEventKind
impl Clone for DeployEventKind
Source§fn clone(&self) -> DeployEventKind
fn clone(&self) -> DeployEventKind
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 DeployEventKind
Source§impl Debug for DeployEventKind
impl Debug for DeployEventKind
Source§impl Default for DeployEventKind
impl Default for DeployEventKind
Source§fn default() -> DeployEventKind
fn default() -> DeployEventKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeployEventKind
impl<'de> Deserialize<'de> for DeployEventKind
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 Display for DeployEventKind
impl Display for DeployEventKind
impl Eq for DeployEventKind
Source§impl Hash for DeployEventKind
impl Hash for DeployEventKind
Source§impl Ord for DeployEventKind
impl Ord for DeployEventKind
Source§fn cmp(&self, other: &DeployEventKind) -> Ordering
fn cmp(&self, other: &DeployEventKind) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for DeployEventKind
impl PartialEq for DeployEventKind
Source§impl PartialOrd for DeployEventKind
impl PartialOrd for DeployEventKind
Source§impl Serialize for DeployEventKind
impl Serialize for DeployEventKind
impl StructuralPartialEq for DeployEventKind
Auto Trait Implementations§
impl Freeze for DeployEventKind
impl RefUnwindSafe for DeployEventKind
impl Send for DeployEventKind
impl Sync for DeployEventKind
impl Unpin for DeployEventKind
impl UnsafeUnpin for DeployEventKind
impl UnwindSafe for DeployEventKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.