pub struct InstallationTargetEvent(pub InstallationTargetRenamed);
Expand description
InstallationTargetEvent
JSON schema
{
"oneOf": [
{
"$ref": "#/definitions/installation_target$renamed"
}
]
}
Tuple Fields§
§0: InstallationTargetRenamed
Trait Implementations§
Source§impl Clone for InstallationTargetEvent
impl Clone for InstallationTargetEvent
Source§fn clone(&self) -> InstallationTargetEvent
fn clone(&self) -> InstallationTargetEvent
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 InstallationTargetEvent
impl Debug for InstallationTargetEvent
Source§impl Deref for InstallationTargetEvent
impl Deref for InstallationTargetEvent
Source§type Target = InstallationTargetRenamed
type Target = InstallationTargetRenamed
The resulting type after dereferencing.
Source§fn deref(&self) -> &InstallationTargetRenamed
fn deref(&self) -> &InstallationTargetRenamed
Dereferences the value.
Source§impl<'de> Deserialize<'de> for InstallationTargetEvent
impl<'de> Deserialize<'de> for InstallationTargetEvent
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 From<&InstallationTargetEvent> for InstallationTargetEvent
impl From<&InstallationTargetEvent> for InstallationTargetEvent
Source§fn from(value: &InstallationTargetEvent) -> Self
fn from(value: &InstallationTargetEvent) -> Self
Converts to this type from the input type.
Source§impl From<InstallationTargetEvent> for InstallationTargetRenamed
impl From<InstallationTargetEvent> for InstallationTargetRenamed
Source§fn from(value: InstallationTargetEvent) -> Self
fn from(value: InstallationTargetEvent) -> Self
Converts to this type from the input type.
Source§impl From<InstallationTargetRenamed> for InstallationTargetEvent
impl From<InstallationTargetRenamed> for InstallationTargetEvent
Source§fn from(value: InstallationTargetRenamed) -> Self
fn from(value: InstallationTargetRenamed) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InstallationTargetEvent
impl RefUnwindSafe for InstallationTargetEvent
impl Send for InstallationTargetEvent
impl Sync for InstallationTargetEvent
impl Unpin for InstallationTargetEvent
impl UnwindSafe for InstallationTargetEvent
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