pub struct ApiKeyRespBody {
pub created_at: String,
pub dataset_ids: Option<Option<Vec<String>>>,
pub id: Uuid,
pub name: String,
pub organization_ids: Option<Option<Vec<String>>>,
pub role: i32,
pub updated_at: String,
pub user_id: Uuid,
}
Fields§
§created_at: String
§dataset_ids: Option<Option<Vec<String>>>
§id: Uuid
§name: String
§organization_ids: Option<Option<Vec<String>>>
§role: i32
§updated_at: String
§user_id: Uuid
Implementations§
Trait Implementations§
Source§impl Clone for ApiKeyRespBody
impl Clone for ApiKeyRespBody
Source§fn clone(&self) -> ApiKeyRespBody
fn clone(&self) -> ApiKeyRespBody
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 ApiKeyRespBody
impl Debug for ApiKeyRespBody
Source§impl Default for ApiKeyRespBody
impl Default for ApiKeyRespBody
Source§fn default() -> ApiKeyRespBody
fn default() -> ApiKeyRespBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApiKeyRespBody
impl<'de> Deserialize<'de> for ApiKeyRespBody
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 ApiKeyRespBody
impl PartialEq for ApiKeyRespBody
Source§impl Serialize for ApiKeyRespBody
impl Serialize for ApiKeyRespBody
impl StructuralPartialEq for ApiKeyRespBody
Auto Trait Implementations§
impl Freeze for ApiKeyRespBody
impl RefUnwindSafe for ApiKeyRespBody
impl Send for ApiKeyRespBody
impl Sync for ApiKeyRespBody
impl Unpin for ApiKeyRespBody
impl UnwindSafe for ApiKeyRespBody
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