#[non_exhaustive]pub struct GetOrganizationRequest {
pub name: String,
/* private fields */
}Expand description
The request sent to the GetOrganization method. The name field is
required. organization_id is no longer accepted.
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 Organization to fetch. This is the organization’s relative path in the API, formatted as “organizations/[organizationId]”. For example, “organizations/1234”.
Implementations§
Trait Implementations§
Source§impl Clone for GetOrganizationRequest
impl Clone for GetOrganizationRequest
Source§fn clone(&self) -> GetOrganizationRequest
fn clone(&self) -> GetOrganizationRequest
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 GetOrganizationRequest
impl Debug for GetOrganizationRequest
Source§impl Default for GetOrganizationRequest
impl Default for GetOrganizationRequest
Source§fn default() -> GetOrganizationRequest
fn default() -> GetOrganizationRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetOrganizationRequest
impl Message for GetOrganizationRequest
Source§impl PartialEq for GetOrganizationRequest
impl PartialEq for GetOrganizationRequest
impl StructuralPartialEq for GetOrganizationRequest
Auto Trait Implementations§
impl Freeze for GetOrganizationRequest
impl RefUnwindSafe for GetOrganizationRequest
impl Send for GetOrganizationRequest
impl Sync for GetOrganizationRequest
impl Unpin for GetOrganizationRequest
impl UnwindSafe for GetOrganizationRequest
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