pub struct UpdateSegmentSuccessResponse {
pub success: Option<bool>,
pub id: Option<String>,
}Fields§
§success: Option<bool>true if the segment was updated successfully, false otherwise.
id: Option<String>UUID of the updated segment.
Implementations§
Source§impl UpdateSegmentSuccessResponse
impl UpdateSegmentSuccessResponse
pub fn new() -> UpdateSegmentSuccessResponse
Trait Implementations§
Source§impl Clone for UpdateSegmentSuccessResponse
impl Clone for UpdateSegmentSuccessResponse
Source§fn clone(&self) -> UpdateSegmentSuccessResponse
fn clone(&self) -> UpdateSegmentSuccessResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateSegmentSuccessResponse
impl Debug for UpdateSegmentSuccessResponse
Source§impl Default for UpdateSegmentSuccessResponse
impl Default for UpdateSegmentSuccessResponse
Source§fn default() -> UpdateSegmentSuccessResponse
fn default() -> UpdateSegmentSuccessResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateSegmentSuccessResponse
impl<'de> Deserialize<'de> for UpdateSegmentSuccessResponse
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
impl StructuralPartialEq for UpdateSegmentSuccessResponse
Auto Trait Implementations§
impl Freeze for UpdateSegmentSuccessResponse
impl RefUnwindSafe for UpdateSegmentSuccessResponse
impl Send for UpdateSegmentSuccessResponse
impl Sync for UpdateSegmentSuccessResponse
impl Unpin for UpdateSegmentSuccessResponse
impl UnsafeUnpin for UpdateSegmentSuccessResponse
impl UnwindSafe for UpdateSegmentSuccessResponse
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