pub struct AdminApiKey_Owner {
pub type: Option<String>,
pub object: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub created_at: Option<i64>,
pub role: Option<String>,
}
Fields§
§type: Option<String>
Always user
object: Option<String>
The object type, which is always organization.user
id: Option<String>
The identifier, which can be referenced in API endpoints
name: Option<String>
The name of the user
created_at: Option<i64>
The Unix timestamp (in seconds) of when the user was created
role: Option<String>
Always owner
Trait Implementations§
Source§impl Clone for AdminApiKey_Owner
impl Clone for AdminApiKey_Owner
Source§fn clone(&self) -> AdminApiKey_Owner
fn clone(&self) -> AdminApiKey_Owner
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 AdminApiKey_Owner
impl Debug for AdminApiKey_Owner
Source§impl Default for AdminApiKey_Owner
impl Default for AdminApiKey_Owner
Source§fn default() -> AdminApiKey_Owner
fn default() -> AdminApiKey_Owner
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AdminApiKey_Owner
impl RefUnwindSafe for AdminApiKey_Owner
impl Send for AdminApiKey_Owner
impl Sync for AdminApiKey_Owner
impl Unpin for AdminApiKey_Owner
impl UnwindSafe for AdminApiKey_Owner
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