pub struct AppendCommand {
pub parent_id: String,
pub content_type: ContentType,
pub properties: HashMap<String, Value>,
pub content: String,
pub index: Option<usize>,
}Expand description
APPEND command
Fields§
§parent_id: String§content_type: ContentType§properties: HashMap<String, Value>§content: String§index: Option<usize>Trait Implementations§
Source§impl Clone for AppendCommand
impl Clone for AppendCommand
Source§fn clone(&self) -> AppendCommand
fn clone(&self) -> AppendCommand
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 AppendCommand
impl Debug for AppendCommand
Source§impl<'de> Deserialize<'de> for AppendCommand
impl<'de> Deserialize<'de> for AppendCommand
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 AppendCommand
impl PartialEq for AppendCommand
Source§impl Serialize for AppendCommand
impl Serialize for AppendCommand
impl StructuralPartialEq for AppendCommand
Auto Trait Implementations§
impl Freeze for AppendCommand
impl RefUnwindSafe for AppendCommand
impl Send for AppendCommand
impl Sync for AppendCommand
impl Unpin for AppendCommand
impl UnwindSafe for AppendCommand
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