#[non_exhaustive]pub struct SetIsolatedModeResult {
pub iso_mode: String,
pub mode_type: String,
}Expand description
Result of updating isolated margin mode.
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.iso_mode: StringIsolated margin mode.
mode_type: StringOKX isolated-mode scope type.
Trait Implementations§
Source§impl Clone for SetIsolatedModeResult
impl Clone for SetIsolatedModeResult
Source§fn clone(&self) -> SetIsolatedModeResult
fn clone(&self) -> SetIsolatedModeResult
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 SetIsolatedModeResult
impl Debug for SetIsolatedModeResult
Source§impl<'de> Deserialize<'de> for SetIsolatedModeResult
impl<'de> Deserialize<'de> for SetIsolatedModeResult
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
Auto Trait Implementations§
impl Freeze for SetIsolatedModeResult
impl RefUnwindSafe for SetIsolatedModeResult
impl Send for SetIsolatedModeResult
impl Sync for SetIsolatedModeResult
impl Unpin for SetIsolatedModeResult
impl UnsafeUnpin for SetIsolatedModeResult
impl UnwindSafe for SetIsolatedModeResult
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