pub struct LockingProperty {
pub this: Option<Box<Expression>>,
pub kind: String,
pub for_or_in: Option<Box<Expression>>,
pub lock_type: Option<Box<Expression>>,
pub override_: Option<Box<Expression>>,
}Expand description
LockingProperty
Fields§
§this: Option<Box<Expression>>§kind: String§for_or_in: Option<Box<Expression>>§lock_type: Option<Box<Expression>>§override_: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for LockingProperty
impl Clone for LockingProperty
Source§fn clone(&self) -> LockingProperty
fn clone(&self) -> LockingProperty
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 LockingProperty
impl Debug for LockingProperty
Source§impl<'de> Deserialize<'de> for LockingProperty
impl<'de> Deserialize<'de> for LockingProperty
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 LockingProperty
impl PartialEq for LockingProperty
Source§impl Serialize for LockingProperty
impl Serialize for LockingProperty
impl StructuralPartialEq for LockingProperty
Auto Trait Implementations§
impl Freeze for LockingProperty
impl RefUnwindSafe for LockingProperty
impl Send for LockingProperty
impl Sync for LockingProperty
impl Unpin for LockingProperty
impl UnwindSafe for LockingProperty
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