#[non_exhaustive]pub struct Compatibility {
pub compatible: bool,
pub reason: String,
/* private fields */
}Expand description
Provides compatibility information for a specific metadata store.
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.compatible: boolOutput only. Whether the entity is compatible and can be represented in the metadata store.
reason: StringOutput only. Provides additional detail if the entity is incompatible with the metadata store.
Implementations§
Source§impl Compatibility
impl Compatibility
pub fn new() -> Self
Sourcepub fn set_compatible<T: Into<bool>>(self, v: T) -> Self
pub fn set_compatible<T: Into<bool>>(self, v: T) -> Self
Sets the value of compatible.
Sourcepub fn set_reason<T: Into<String>>(self, v: T) -> Self
pub fn set_reason<T: Into<String>>(self, v: T) -> Self
Sets the value of reason.
Trait Implementations§
Source§impl Clone for Compatibility
impl Clone for Compatibility
Source§fn clone(&self) -> Compatibility
fn clone(&self) -> Compatibility
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 Compatibility
impl Debug for Compatibility
Source§impl Default for Compatibility
impl Default for Compatibility
Source§fn default() -> Compatibility
fn default() -> Compatibility
Returns the “default value” for a type. Read more
Source§impl Message for Compatibility
impl Message for Compatibility
Source§impl PartialEq for Compatibility
impl PartialEq for Compatibility
impl StructuralPartialEq for Compatibility
Auto Trait Implementations§
impl Freeze for Compatibility
impl RefUnwindSafe for Compatibility
impl Send for Compatibility
impl Sync for Compatibility
impl Unpin for Compatibility
impl UnwindSafe for Compatibility
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