#[non_exhaustive]pub struct ListTenantBasedHandlesOptionalParams {
pub tenant_id: Option<String>,
pub name: Option<String>,
}
Expand description
ListTenantBasedHandlesOptionalParams is a struct for passing parameters to the method MicrosoftTeamsIntegrationAPI::list_tenant_based_handles
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.tenant_id: Option<String>
Your tenant id.
name: Option<String>
Your tenant-based handle name.
Implementations§
Trait Implementations§
Source§impl Clone for ListTenantBasedHandlesOptionalParams
impl Clone for ListTenantBasedHandlesOptionalParams
Source§fn clone(&self) -> ListTenantBasedHandlesOptionalParams
fn clone(&self) -> ListTenantBasedHandlesOptionalParams
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 Default for ListTenantBasedHandlesOptionalParams
impl Default for ListTenantBasedHandlesOptionalParams
Source§fn default() -> ListTenantBasedHandlesOptionalParams
fn default() -> ListTenantBasedHandlesOptionalParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListTenantBasedHandlesOptionalParams
impl RefUnwindSafe for ListTenantBasedHandlesOptionalParams
impl Send for ListTenantBasedHandlesOptionalParams
impl Sync for ListTenantBasedHandlesOptionalParams
impl Unpin for ListTenantBasedHandlesOptionalParams
impl UnwindSafe for ListTenantBasedHandlesOptionalParams
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