pub struct OutputCasePage {
pub _id: String,
pub id: String,
pub created_by: String,
pub created_at: i64,
pub updated_by: Option<Option<String>>,
pub updated_at: Option<Option<i64>>,
pub title: String,
pub content: String,
pub _type: String,
pub slug: String,
pub order: i32,
pub category: String,
}Fields§
§_id: String§id: String§created_by: String§created_at: i64§updated_by: Option<Option<String>>§updated_at: Option<Option<i64>>§title: String§content: String§_type: String§slug: String§order: i32§category: StringImplementations§
Trait Implementations§
Source§impl Clone for OutputCasePage
impl Clone for OutputCasePage
Source§fn clone(&self) -> OutputCasePage
fn clone(&self) -> OutputCasePage
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 OutputCasePage
impl Debug for OutputCasePage
Source§impl Default for OutputCasePage
impl Default for OutputCasePage
Source§fn default() -> OutputCasePage
fn default() -> OutputCasePage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputCasePage
impl<'de> Deserialize<'de> for OutputCasePage
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 OutputCasePage
impl PartialEq for OutputCasePage
Source§impl Serialize for OutputCasePage
impl Serialize for OutputCasePage
impl StructuralPartialEq for OutputCasePage
Auto Trait Implementations§
impl Freeze for OutputCasePage
impl RefUnwindSafe for OutputCasePage
impl Send for OutputCasePage
impl Sync for OutputCasePage
impl Unpin for OutputCasePage
impl UnwindSafe for OutputCasePage
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