pub struct ModificationState {
pub resource: Option<String>,
pub state: Option<String>,
}Expand description
Describes a WorkSpace modification.
Fields§
§resource: Option<String>The resource.
state: Option<String>The modification state.
Trait Implementations§
Source§impl Clone for ModificationState
impl Clone for ModificationState
Source§fn clone(&self) -> ModificationState
fn clone(&self) -> ModificationState
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 ModificationState
impl Debug for ModificationState
Source§impl Default for ModificationState
impl Default for ModificationState
Source§fn default() -> ModificationState
fn default() -> ModificationState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ModificationState
impl<'de> Deserialize<'de> for ModificationState
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 ModificationState
impl PartialEq for ModificationState
impl StructuralPartialEq for ModificationState
Auto Trait Implementations§
impl Freeze for ModificationState
impl RefUnwindSafe for ModificationState
impl Send for ModificationState
impl Sync for ModificationState
impl Unpin for ModificationState
impl UnwindSafe for ModificationState
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