pub struct CreatePermissionResponse {
pub id: String,
pub name: String,
pub operations: Vec<String>,
pub status: String,
pub is_immutable: bool,
pub is_archived: bool,
pub date_created: String,
pub date_updated: String,
}Expand description
Create Permission
Fields§
§id: String§name: String§operations: Vec<String>§status: String§is_immutable: bool§is_archived: bool§date_created: String§date_updated: StringTrait Implementations§
Source§impl Clone for CreatePermissionResponse
impl Clone for CreatePermissionResponse
Source§fn clone(&self) -> CreatePermissionResponse
fn clone(&self) -> CreatePermissionResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreatePermissionResponse
impl Debug for CreatePermissionResponse
Source§impl<'de> Deserialize<'de> for CreatePermissionResponse
impl<'de> Deserialize<'de> for CreatePermissionResponse
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
Auto Trait Implementations§
impl Freeze for CreatePermissionResponse
impl RefUnwindSafe for CreatePermissionResponse
impl Send for CreatePermissionResponse
impl Sync for CreatePermissionResponse
impl Unpin for CreatePermissionResponse
impl UnsafeUnpin for CreatePermissionResponse
impl UnwindSafe for CreatePermissionResponse
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