pub struct PropertyReassignmentEvent {
pub fields: BuildEventArgsFields,
pub property_name: Option<String>,
pub previous_value: Option<String>,
pub new_value: Option<String>,
pub location: Option<String>,
}Expand description
PropertyReassignment event — a property value was overwritten.
Fields§
§fields: BuildEventArgsFields§property_name: Option<String>§previous_value: Option<String>§new_value: Option<String>§location: Option<String>Trait Implementations§
Source§impl Clone for PropertyReassignmentEvent
impl Clone for PropertyReassignmentEvent
Source§fn clone(&self) -> PropertyReassignmentEvent
fn clone(&self) -> PropertyReassignmentEvent
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 PropertyReassignmentEvent
impl Debug for PropertyReassignmentEvent
Source§impl Default for PropertyReassignmentEvent
impl Default for PropertyReassignmentEvent
Source§fn default() -> PropertyReassignmentEvent
fn default() -> PropertyReassignmentEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyReassignmentEvent
impl<'de> Deserialize<'de> for PropertyReassignmentEvent
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 PropertyReassignmentEvent
impl RefUnwindSafe for PropertyReassignmentEvent
impl Send for PropertyReassignmentEvent
impl Sync for PropertyReassignmentEvent
impl Unpin for PropertyReassignmentEvent
impl UnsafeUnpin for PropertyReassignmentEvent
impl UnwindSafe for PropertyReassignmentEvent
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