pub struct OutputProfile {
pub _id: String,
pub _type: String,
pub _created_by: String,
pub _created_at: i64,
pub _updated_by: Option<Option<String>>,
pub _updated_at: Option<Option<i64>>,
pub name: String,
pub editable: bool,
pub is_admin: bool,
pub permissions: Option<Option<Vec<String>>>,
}Fields§
§_id: String§_type: String§_created_by: String§_created_at: i64§_updated_by: Option<Option<String>>§_updated_at: Option<Option<i64>>§name: String§editable: bool§is_admin: bool§permissions: Option<Option<Vec<String>>>Implementations§
Trait Implementations§
Source§impl Clone for OutputProfile
impl Clone for OutputProfile
Source§fn clone(&self) -> OutputProfile
fn clone(&self) -> OutputProfile
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 OutputProfile
impl Debug for OutputProfile
Source§impl Default for OutputProfile
impl Default for OutputProfile
Source§fn default() -> OutputProfile
fn default() -> OutputProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputProfile
impl<'de> Deserialize<'de> for OutputProfile
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 OutputProfile
impl PartialEq for OutputProfile
Source§impl Serialize for OutputProfile
impl Serialize for OutputProfile
impl StructuralPartialEq for OutputProfile
Auto Trait Implementations§
impl Freeze for OutputProfile
impl RefUnwindSafe for OutputProfile
impl Send for OutputProfile
impl Sync for OutputProfile
impl Unpin for OutputProfile
impl UnwindSafe for OutputProfile
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