pub struct Asp {
pub kind: Option<String>,
pub etag: Option<String>,
pub name: Option<String>,
pub code_id: Option<i32>,
pub last_time_used: Option<String>,
pub user_key: Option<String>,
pub creation_time: Option<String>,
}Expand description
The template that returns individual ASP (Access Code) data.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- list asps (none)
- delete asps (none)
- get asps (response)
Fields§
§kind: Option<String>The type of the API resource. This is always admin#directory#asp.
etag: Option<String>ETag of the ASP.
name: Option<String>The name of the application that the user, represented by their userId, entered when the ASP was created.
code_id: Option<i32>The unique ID of the ASP.
last_time_used: Option<String>The time when the ASP was last used. Expressed in Unix time format.
user_key: Option<String>The unique ID of the user who issued the ASP.
creation_time: Option<String>The time when the ASP was created. Expressed in Unix time format.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Asp
impl<'de> Deserialize<'de> for Asp
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
impl Resource for Asp
impl ResponseResult for Asp
Auto Trait Implementations§
impl Freeze for Asp
impl RefUnwindSafe for Asp
impl Send for Asp
impl Sync for Asp
impl Unpin for Asp
impl UnsafeUnpin for Asp
impl UnwindSafe for Asp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more