pub struct DeleteCommand {
pub block_id: Option<String>,
pub cascade: bool,
pub preserve_children: bool,
pub condition: Option<Condition>,
}Expand description
DELETE command
Fields§
§block_id: Option<String>§cascade: bool§preserve_children: bool§condition: Option<Condition>Trait Implementations§
Source§impl Clone for DeleteCommand
impl Clone for DeleteCommand
Source§fn clone(&self) -> DeleteCommand
fn clone(&self) -> DeleteCommand
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 DeleteCommand
impl Debug for DeleteCommand
Source§impl<'de> Deserialize<'de> for DeleteCommand
impl<'de> Deserialize<'de> for DeleteCommand
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 DeleteCommand
impl PartialEq for DeleteCommand
Source§impl Serialize for DeleteCommand
impl Serialize for DeleteCommand
impl StructuralPartialEq for DeleteCommand
Auto Trait Implementations§
impl Freeze for DeleteCommand
impl RefUnwindSafe for DeleteCommand
impl Send for DeleteCommand
impl Sync for DeleteCommand
impl Unpin for DeleteCommand
impl UnwindSafe for DeleteCommand
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