pub struct PhaseTarget {
pub type_: Option<i32>,
}Expand description
Represents the target of a phase.
Fields§
§type_: Option<i32>The type of the target.
Implementations§
Source§impl PhaseTarget
impl PhaseTarget
Trait Implementations§
Source§impl Clone for PhaseTarget
impl Clone for PhaseTarget
Source§fn clone(&self) -> PhaseTarget
fn clone(&self) -> PhaseTarget
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 PhaseTarget
impl Debug for PhaseTarget
Source§impl Default for PhaseTarget
impl Default for PhaseTarget
Source§fn default() -> PhaseTarget
fn default() -> PhaseTarget
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PhaseTarget
impl<'de> Deserialize<'de> for PhaseTarget
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 PhaseTarget
impl PartialEq for PhaseTarget
Source§impl Serialize for PhaseTarget
impl Serialize for PhaseTarget
impl StructuralPartialEq for PhaseTarget
Auto Trait Implementations§
impl Freeze for PhaseTarget
impl RefUnwindSafe for PhaseTarget
impl Send for PhaseTarget
impl Sync for PhaseTarget
impl Unpin for PhaseTarget
impl UnwindSafe for PhaseTarget
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