pub struct Profile {
pub _id: Option<String>,
pub user_id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub color: Option<String>,
pub is_default: Option<bool>,
pub is_over_limit: Option<bool>,
pub created_at: Option<String>,
}Fields§
§_id: Option<String>§user_id: Option<String>§name: Option<String>§description: Option<String>§color: Option<String>§is_default: Option<bool>§is_over_limit: Option<bool>Only present when includeOverLimit=true. Indicates if this profile exceeds the plan limit.
created_at: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Profile
impl<'de> Deserialize<'de> for Profile
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 Profile
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnsafeUnpin for Profile
impl UnwindSafe for Profile
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