pub struct PackWarning {
pub code: String,
pub message: String,
pub field: Option<String>,
}Expand description
A validation warning that does not prevent loading but indicates a potential issue.
Fields§
§code: String§message: String§field: Option<String>Trait Implementations§
Source§impl Clone for PackWarning
impl Clone for PackWarning
Source§fn clone(&self) -> PackWarning
fn clone(&self) -> PackWarning
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 PackWarning
impl Debug for PackWarning
Auto Trait Implementations§
impl Freeze for PackWarning
impl RefUnwindSafe for PackWarning
impl Send for PackWarning
impl Sync for PackWarning
impl Unpin for PackWarning
impl UnsafeUnpin for PackWarning
impl UnwindSafe for PackWarning
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