pub struct UpdateDecision {
pub space: String,
pub collection: String,
pub path: String,
pub kind: UpdateDecisionKind,
pub detail: Option<String>,
}Fields§
§space: String§collection: String§path: String§kind: UpdateDecisionKind§detail: Option<String>Trait Implementations§
Source§impl Clone for UpdateDecision
impl Clone for UpdateDecision
Source§fn clone(&self) -> UpdateDecision
fn clone(&self) -> UpdateDecision
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 moreSource§impl Debug for UpdateDecision
impl Debug for UpdateDecision
Source§impl<'de> Deserialize<'de> for UpdateDecision
impl<'de> Deserialize<'de> for UpdateDecision
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 UpdateDecision
impl PartialEq for UpdateDecision
Source§fn eq(&self, other: &UpdateDecision) -> bool
fn eq(&self, other: &UpdateDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for UpdateDecision
impl Serialize for UpdateDecision
impl Eq for UpdateDecision
impl StructuralPartialEq for UpdateDecision
Auto Trait Implementations§
impl Freeze for UpdateDecision
impl RefUnwindSafe for UpdateDecision
impl Send for UpdateDecision
impl Sync for UpdateDecision
impl Unpin for UpdateDecision
impl UnsafeUnpin for UpdateDecision
impl UnwindSafe for UpdateDecision
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