pub struct IdentifyOutput {
pub matches: bool,
}Expand description
Wire-format output from a WASM importer’s identify.
Fields§
§matches: boolTrue if this importer handles the file at IdentifyInput.path.
Trait Implementations§
Source§impl Clone for IdentifyOutput
impl Clone for IdentifyOutput
Source§fn clone(&self) -> IdentifyOutput
fn clone(&self) -> IdentifyOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IdentifyOutput
impl Debug for IdentifyOutput
Source§impl<'de> Deserialize<'de> for IdentifyOutput
impl<'de> Deserialize<'de> for IdentifyOutput
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 IdentifyOutput
impl RefUnwindSafe for IdentifyOutput
impl Send for IdentifyOutput
impl Sync for IdentifyOutput
impl Unpin for IdentifyOutput
impl UnsafeUnpin for IdentifyOutput
impl UnwindSafe for IdentifyOutput
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