pub struct SupportCase {
pub case_id: Option<String>,
pub created: Option<String>,
pub status: Option<String>,
pub timeline: Option<Vec<SupportCaseTimelineInner>>,
}Fields§
§case_id: Option<String>§created: Option<String>§status: Option<String>§timeline: Option<Vec<SupportCaseTimelineInner>>Implementations§
Source§impl SupportCase
impl SupportCase
pub fn new() -> SupportCase
Trait Implementations§
Source§impl Clone for SupportCase
impl Clone for SupportCase
Source§fn clone(&self) -> SupportCase
fn clone(&self) -> SupportCase
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 SupportCase
impl Debug for SupportCase
Source§impl Default for SupportCase
impl Default for SupportCase
Source§fn default() -> SupportCase
fn default() -> SupportCase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SupportCase
impl<'de> Deserialize<'de> for SupportCase
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 SupportCase
impl PartialEq for SupportCase
Source§impl Serialize for SupportCase
impl Serialize for SupportCase
impl StructuralPartialEq for SupportCase
Auto Trait Implementations§
impl Freeze for SupportCase
impl RefUnwindSafe for SupportCase
impl Send for SupportCase
impl Sync for SupportCase
impl Unpin for SupportCase
impl UnwindSafe for SupportCase
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