pub struct DetectedModule {
pub path: Option<String>,
pub kind: Option<String>,
pub manifests: Option<Vec<String>>,
pub entrypoints: Option<Vec<String>>,
pub build_strategy: Option<String>,
}Fields§
§path: Option<String>§kind: Option<String>§manifests: Option<Vec<String>>§entrypoints: Option<Vec<String>>§build_strategy: Option<String>Implementations§
Source§impl DetectedModule
impl DetectedModule
pub fn new() -> DetectedModule
Trait Implementations§
Source§impl Clone for DetectedModule
impl Clone for DetectedModule
Source§fn clone(&self) -> DetectedModule
fn clone(&self) -> DetectedModule
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 DetectedModule
impl Debug for DetectedModule
Source§impl Default for DetectedModule
impl Default for DetectedModule
Source§fn default() -> DetectedModule
fn default() -> DetectedModule
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DetectedModule
impl<'de> Deserialize<'de> for DetectedModule
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
Source§impl PartialEq for DetectedModule
impl PartialEq for DetectedModule
Source§fn eq(&self, other: &DetectedModule) -> bool
fn eq(&self, other: &DetectedModule) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DetectedModule
impl Serialize for DetectedModule
impl StructuralPartialEq for DetectedModule
Auto Trait Implementations§
impl Freeze for DetectedModule
impl RefUnwindSafe for DetectedModule
impl Send for DetectedModule
impl Sync for DetectedModule
impl Unpin for DetectedModule
impl UnsafeUnpin for DetectedModule
impl UnwindSafe for DetectedModule
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