#[non_exhaustive]pub struct DevicePoolCompatibilityResult { /* private fields */ }Expand description
Represents a device pool compatibility result.
Implementations
sourceimpl DevicePoolCompatibilityResult
impl DevicePoolCompatibilityResult
sourcepub fn device(&self) -> Option<&Device>
pub fn device(&self) -> Option<&Device>
The device (phone or tablet) to return information about.
sourcepub fn compatible(&self) -> Option<bool>
pub fn compatible(&self) -> Option<bool>
Whether the result was compatible with the device pool.
sourcepub fn incompatibility_messages(&self) -> Option<&[IncompatibilityMessage]>
pub fn incompatibility_messages(&self) -> Option<&[IncompatibilityMessage]>
Information about the compatibility.
sourceimpl DevicePoolCompatibilityResult
impl DevicePoolCompatibilityResult
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DevicePoolCompatibilityResult.
Trait Implementations
sourceimpl Clone for DevicePoolCompatibilityResult
impl Clone for DevicePoolCompatibilityResult
sourcefn clone(&self) -> DevicePoolCompatibilityResult
fn clone(&self) -> DevicePoolCompatibilityResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DevicePoolCompatibilityResult
impl Debug for DevicePoolCompatibilityResult
sourceimpl PartialEq<DevicePoolCompatibilityResult> for DevicePoolCompatibilityResult
impl PartialEq<DevicePoolCompatibilityResult> for DevicePoolCompatibilityResult
sourcefn eq(&self, other: &DevicePoolCompatibilityResult) -> bool
fn eq(&self, other: &DevicePoolCompatibilityResult) -> bool
impl StructuralPartialEq for DevicePoolCompatibilityResult
Auto Trait Implementations
impl RefUnwindSafe for DevicePoolCompatibilityResult
impl Send for DevicePoolCompatibilityResult
impl Sync for DevicePoolCompatibilityResult
impl Unpin for DevicePoolCompatibilityResult
impl UnwindSafe for DevicePoolCompatibilityResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more