pub struct ReleaseStageUpdateInput {
pub name: Option<String>,
pub color: Option<String>,
pub position: Option<f64>,
}Fields§
§name: Option<String>The name of the stage.
color: Option<String>The UI color of the stage as a HEX string.
position: Option<f64>The position of the stage.
Trait Implementations§
Source§impl Clone for ReleaseStageUpdateInput
impl Clone for ReleaseStageUpdateInput
Source§fn clone(&self) -> ReleaseStageUpdateInput
fn clone(&self) -> ReleaseStageUpdateInput
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 ReleaseStageUpdateInput
impl Debug for ReleaseStageUpdateInput
Source§impl Default for ReleaseStageUpdateInput
impl Default for ReleaseStageUpdateInput
Source§fn default() -> ReleaseStageUpdateInput
fn default() -> ReleaseStageUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReleaseStageUpdateInput
impl<'de> Deserialize<'de> for ReleaseStageUpdateInput
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 ReleaseStageUpdateInput
impl RefUnwindSafe for ReleaseStageUpdateInput
impl Send for ReleaseStageUpdateInput
impl Sync for ReleaseStageUpdateInput
impl Unpin for ReleaseStageUpdateInput
impl UnwindSafe for ReleaseStageUpdateInput
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