#[non_exhaustive]pub struct GetFloorSettingRequest {
pub name: String,
/* private fields */
}Expand description
Message for getting a Floor Setting
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 name of the floor setting to get, example projects/123/floorsetting.
Implementations§
Trait Implementations§
Source§impl Clone for GetFloorSettingRequest
impl Clone for GetFloorSettingRequest
Source§fn clone(&self) -> GetFloorSettingRequest
fn clone(&self) -> GetFloorSettingRequest
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 GetFloorSettingRequest
impl Debug for GetFloorSettingRequest
Source§impl Default for GetFloorSettingRequest
impl Default for GetFloorSettingRequest
Source§fn default() -> GetFloorSettingRequest
fn default() -> GetFloorSettingRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetFloorSettingRequest
impl Message for GetFloorSettingRequest
Source§impl PartialEq for GetFloorSettingRequest
impl PartialEq for GetFloorSettingRequest
impl StructuralPartialEq for GetFloorSettingRequest
Auto Trait Implementations§
impl Freeze for GetFloorSettingRequest
impl RefUnwindSafe for GetFloorSettingRequest
impl Send for GetFloorSettingRequest
impl Sync for GetFloorSettingRequest
impl Unpin for GetFloorSettingRequest
impl UnwindSafe for GetFloorSettingRequest
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