pub struct Note {Show 15 fields
pub id: String,
pub title: String,
pub tags: Vec<String>,
pub created_at: usize,
pub publish_type: String,
pub published_at: Option<String>,
pub permalink: Option<String>,
pub short_id: String,
pub content: String,
pub last_changed_at: usize,
pub last_changed_user: Option<SimplifiedUser>,
pub user_path: String,
pub team_path: Option<String>,
pub read_permission: String,
pub write_permission: String,
}
Fields§
§id: String
§title: String
§created_at: usize
§publish_type: String
§published_at: Option<String>
§permalink: Option<String>
§short_id: String
§content: String
§last_changed_at: usize
§last_changed_user: Option<SimplifiedUser>
§user_path: String
§team_path: Option<String>
§read_permission: String
§write_permission: String
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Note
impl<'de> Deserialize<'de> for Note
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
impl StructuralPartialEq for Note
Auto Trait Implementations§
impl Freeze for Note
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnwindSafe for Note
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