pub struct UpdateSegmentAttributeCommand {
pub request_id: i64,
pub segment_name: String,
pub attribute_id: u128,
pub new_value: i64,
pub expected_value: i64,
pub delegation_token: String,
}
Expand description
- UpdateSegmentAttribute Command
Fields§
§request_id: i64
§segment_name: String
§attribute_id: u128
§new_value: i64
§expected_value: i64
§delegation_token: String
Trait Implementations§
Source§impl Clone for UpdateSegmentAttributeCommand
impl Clone for UpdateSegmentAttributeCommand
Source§fn clone(&self) -> UpdateSegmentAttributeCommand
fn clone(&self) -> UpdateSegmentAttributeCommand
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<'de> Deserialize<'de> for UpdateSegmentAttributeCommand
impl<'de> Deserialize<'de> for UpdateSegmentAttributeCommand
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 UpdateSegmentAttributeCommand
impl PartialEq for UpdateSegmentAttributeCommand
Source§fn eq(&self, other: &UpdateSegmentAttributeCommand) -> bool
fn eq(&self, other: &UpdateSegmentAttributeCommand) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateSegmentAttributeCommand
Auto Trait Implementations§
impl Freeze for UpdateSegmentAttributeCommand
impl RefUnwindSafe for UpdateSegmentAttributeCommand
impl Send for UpdateSegmentAttributeCommand
impl Sync for UpdateSegmentAttributeCommand
impl Unpin for UpdateSegmentAttributeCommand
impl UnwindSafe for UpdateSegmentAttributeCommand
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