pub struct UpdateLeadLabelRequest {
pub name: Option<String>,
pub color: Option<Color>,
}
Fields§
§name: Option<String>
The name of the lead label
color: Option<Color>
The color of the label. Only a subset of colors can be used.
Implementations§
Source§impl UpdateLeadLabelRequest
impl UpdateLeadLabelRequest
pub fn new() -> UpdateLeadLabelRequest
Trait Implementations§
Source§impl Clone for UpdateLeadLabelRequest
impl Clone for UpdateLeadLabelRequest
Source§fn clone(&self) -> UpdateLeadLabelRequest
fn clone(&self) -> UpdateLeadLabelRequest
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 UpdateLeadLabelRequest
impl Debug for UpdateLeadLabelRequest
Source§impl<'de> Deserialize<'de> for UpdateLeadLabelRequest
impl<'de> Deserialize<'de> for UpdateLeadLabelRequest
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 UpdateLeadLabelRequest
impl PartialEq for UpdateLeadLabelRequest
Source§impl Serialize for UpdateLeadLabelRequest
impl Serialize for UpdateLeadLabelRequest
impl StructuralPartialEq for UpdateLeadLabelRequest
Auto Trait Implementations§
impl Freeze for UpdateLeadLabelRequest
impl RefUnwindSafe for UpdateLeadLabelRequest
impl Send for UpdateLeadLabelRequest
impl Sync for UpdateLeadLabelRequest
impl Unpin for UpdateLeadLabelRequest
impl UnwindSafe for UpdateLeadLabelRequest
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