#[non_exhaustive]pub struct GetAvailabilityRequest {
pub name: String,
/* private fields */
}Expand description
Request message for the GetAvailability method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The resource name of the availability to retrieve.
Format: users/{user}/availability
{user} is the id for the Person in the People API or Admin SDK directory
API. For example, users/123456789.
The user’s email address or me can also be used as an alias to refer to
the caller. For example, users/user@example.com or users/me.
Implementations§
Trait Implementations§
Source§impl Clone for GetAvailabilityRequest
impl Clone for GetAvailabilityRequest
Source§fn clone(&self) -> GetAvailabilityRequest
fn clone(&self) -> GetAvailabilityRequest
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 GetAvailabilityRequest
impl Debug for GetAvailabilityRequest
Source§impl Default for GetAvailabilityRequest
impl Default for GetAvailabilityRequest
Source§fn default() -> GetAvailabilityRequest
fn default() -> GetAvailabilityRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetAvailabilityRequest
impl Message for GetAvailabilityRequest
Source§impl PartialEq for GetAvailabilityRequest
impl PartialEq for GetAvailabilityRequest
impl StructuralPartialEq for GetAvailabilityRequest
Auto Trait Implementations§
impl Freeze for GetAvailabilityRequest
impl RefUnwindSafe for GetAvailabilityRequest
impl Send for GetAvailabilityRequest
impl Sync for GetAvailabilityRequest
impl Unpin for GetAvailabilityRequest
impl UnsafeUnpin for GetAvailabilityRequest
impl UnwindSafe for GetAvailabilityRequest
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