pub struct ProjectImportedEvent {
pub fields: BuildEventArgsFields,
pub import_ignored: bool,
pub imported_project_file: Option<String>,
pub unexpanded_project: Option<String>,
}Expand description
ProjectImported event — a project file was imported.
Fields§
§fields: BuildEventArgsFields§import_ignored: boolWhether the import was ignored (format version > 2 only).
imported_project_file: Option<String>§unexpanded_project: Option<String>Trait Implementations§
Source§impl Clone for ProjectImportedEvent
impl Clone for ProjectImportedEvent
Source§fn clone(&self) -> ProjectImportedEvent
fn clone(&self) -> ProjectImportedEvent
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 ProjectImportedEvent
impl Debug for ProjectImportedEvent
Source§impl Default for ProjectImportedEvent
impl Default for ProjectImportedEvent
Source§fn default() -> ProjectImportedEvent
fn default() -> ProjectImportedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectImportedEvent
impl<'de> Deserialize<'de> for ProjectImportedEvent
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 ProjectImportedEvent
impl RefUnwindSafe for ProjectImportedEvent
impl Send for ProjectImportedEvent
impl Sync for ProjectImportedEvent
impl Unpin for ProjectImportedEvent
impl UnsafeUnpin for ProjectImportedEvent
impl UnwindSafe for ProjectImportedEvent
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