pub struct SupportInfo {
pub is_supported: bool,
pub platform: &'static str,
pub details: String,
}Expand description
Information about sandbox support on this platform
Fields§
§is_supported: boolWhether sandboxing is supported
platform: &'static strPlatform name
details: StringDetailed support information
Trait Implementations§
Source§impl Clone for SupportInfo
impl Clone for SupportInfo
Source§fn clone(&self) -> SupportInfo
fn clone(&self) -> SupportInfo
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 moreAuto Trait Implementations§
impl Freeze for SupportInfo
impl RefUnwindSafe for SupportInfo
impl Send for SupportInfo
impl Sync for SupportInfo
impl Unpin for SupportInfo
impl UnsafeUnpin for SupportInfo
impl UnwindSafe for SupportInfo
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