pub struct MemoServiceUpdateMemoRequest {Show 17 fields
pub uid: Option<String>,
pub row_status: Option<V1RowStatus>,
pub creator: Option<String>,
pub create_time: Option<String>,
pub update_time: Option<String>,
pub display_time: Option<String>,
pub content: Option<String>,
pub nodes: Option<Vec<V1Node>>,
pub visibility: Option<V1Visibility>,
pub tags: Option<Vec<String>>,
pub pinned: Option<bool>,
pub resources: Option<Vec<V1Resource>>,
pub relations: Option<Vec<V1MemoRelation>>,
pub reactions: Option<Vec<V1Reaction>>,
pub property: Option<Box<V1MemoProperty>>,
pub parent: Option<String>,
pub snippet: Option<String>,
}
Fields§
§uid: Option<String>
The user defined id of the memo.
row_status: Option<V1RowStatus>
§creator: Option<String>
§create_time: Option<String>
§update_time: Option<String>
§display_time: Option<String>
§content: Option<String>
§nodes: Option<Vec<V1Node>>
§visibility: Option<V1Visibility>
§pinned: Option<bool>
§resources: Option<Vec<V1Resource>>
§relations: Option<Vec<V1MemoRelation>>
§reactions: Option<Vec<V1Reaction>>
§property: Option<Box<V1MemoProperty>>
§parent: Option<String>
§snippet: Option<String>
The snippet of the memo content. Plain text only.
Implementations§
Source§impl MemoServiceUpdateMemoRequest
impl MemoServiceUpdateMemoRequest
pub fn new() -> MemoServiceUpdateMemoRequest
Trait Implementations§
Source§impl Clone for MemoServiceUpdateMemoRequest
impl Clone for MemoServiceUpdateMemoRequest
Source§fn clone(&self) -> MemoServiceUpdateMemoRequest
fn clone(&self) -> MemoServiceUpdateMemoRequest
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 MemoServiceUpdateMemoRequest
impl Debug for MemoServiceUpdateMemoRequest
Source§impl Default for MemoServiceUpdateMemoRequest
impl Default for MemoServiceUpdateMemoRequest
Source§fn default() -> MemoServiceUpdateMemoRequest
fn default() -> MemoServiceUpdateMemoRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MemoServiceUpdateMemoRequest
impl<'de> Deserialize<'de> for MemoServiceUpdateMemoRequest
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 MemoServiceUpdateMemoRequest
impl PartialEq for MemoServiceUpdateMemoRequest
Source§fn eq(&self, other: &MemoServiceUpdateMemoRequest) -> bool
fn eq(&self, other: &MemoServiceUpdateMemoRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for MemoServiceUpdateMemoRequest
Auto Trait Implementations§
impl Freeze for MemoServiceUpdateMemoRequest
impl RefUnwindSafe for MemoServiceUpdateMemoRequest
impl Send for MemoServiceUpdateMemoRequest
impl Sync for MemoServiceUpdateMemoRequest
impl Unpin for MemoServiceUpdateMemoRequest
impl UnwindSafe for MemoServiceUpdateMemoRequest
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