pub struct PreflightIssue {
pub severity: PreflightSeverity,
pub code: String,
pub message: String,
pub atom_ids: Vec<String>,
}Fields§
§severity: PreflightSeverity§code: String§message: String§atom_ids: Vec<String>Trait Implementations§
Source§impl Clone for PreflightIssue
impl Clone for PreflightIssue
Source§fn clone(&self) -> PreflightIssue
fn clone(&self) -> PreflightIssue
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 PreflightIssue
impl Debug for PreflightIssue
Source§impl<'de> Deserialize<'de> for PreflightIssue
impl<'de> Deserialize<'de> for PreflightIssue
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 PreflightIssue
impl RefUnwindSafe for PreflightIssue
impl Send for PreflightIssue
impl Sync for PreflightIssue
impl Unpin for PreflightIssue
impl UnsafeUnpin for PreflightIssue
impl UnwindSafe for PreflightIssue
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