pub struct BasicGrantResponse {
pub credential_id: String,
pub expires_at: String,
pub password: String,
pub realm: Option<String>,
pub scopes: Vec<String>,
pub username: String,
pub additional: AdditionalMembers,
}Fields§
§credential_id: String§expires_at: String§password: String§realm: Option<String>§scopes: Vec<String>§username: String§additional: AdditionalMembersTrait Implementations§
Source§impl Clone for BasicGrantResponse
impl Clone for BasicGrantResponse
Source§fn clone(&self) -> BasicGrantResponse
fn clone(&self) -> BasicGrantResponse
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 BasicGrantResponse
impl Debug for BasicGrantResponse
Source§impl<'de> Deserialize<'de> for BasicGrantResponse
impl<'de> Deserialize<'de> for BasicGrantResponse
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 BasicGrantResponse
impl PartialEq for BasicGrantResponse
Source§impl Serialize for BasicGrantResponse
impl Serialize for BasicGrantResponse
impl StructuralPartialEq for BasicGrantResponse
Auto Trait Implementations§
impl Freeze for BasicGrantResponse
impl RefUnwindSafe for BasicGrantResponse
impl Send for BasicGrantResponse
impl Sync for BasicGrantResponse
impl Unpin for BasicGrantResponse
impl UnsafeUnpin for BasicGrantResponse
impl UnwindSafe for BasicGrantResponse
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