pub struct SkippedStruct {
pub name: String,
pub reason: String,
pub source_file: Option<String>,
}Expand description
A struct/type that was skipped during analysis because its layout cannot be accurately determined from source alone (e.g. generic/template types).
Fields§
§name: String§reason: String§source_file: Option<String>Trait Implementations§
Source§impl Clone for SkippedStruct
impl Clone for SkippedStruct
Source§fn clone(&self) -> SkippedStruct
fn clone(&self) -> SkippedStruct
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 SkippedStruct
impl Debug for SkippedStruct
Source§impl<'de> Deserialize<'de> for SkippedStruct
impl<'de> Deserialize<'de> for SkippedStruct
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 SkippedStruct
impl RefUnwindSafe for SkippedStruct
impl Send for SkippedStruct
impl Sync for SkippedStruct
impl Unpin for SkippedStruct
impl UnsafeUnpin for SkippedStruct
impl UnwindSafe for SkippedStruct
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