pub struct ScheduleCreateResponse {
pub schedule_id: String,
}Expand description
Response returned when a schedule is created.
Fields§
§schedule_id: StringCreated schedule identifier.
Trait Implementations§
Source§impl Clone for ScheduleCreateResponse
impl Clone for ScheduleCreateResponse
Source§fn clone(&self) -> ScheduleCreateResponse
fn clone(&self) -> ScheduleCreateResponse
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 ScheduleCreateResponse
impl Debug for ScheduleCreateResponse
Source§impl<'de> Deserialize<'de> for ScheduleCreateResponse
impl<'de> Deserialize<'de> for ScheduleCreateResponse
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 Eq for ScheduleCreateResponse
Source§impl PartialEq for ScheduleCreateResponse
impl PartialEq for ScheduleCreateResponse
Source§fn eq(&self, other: &ScheduleCreateResponse) -> bool
fn eq(&self, other: &ScheduleCreateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScheduleCreateResponse
impl Serialize for ScheduleCreateResponse
impl StructuralPartialEq for ScheduleCreateResponse
Auto Trait Implementations§
impl Freeze for ScheduleCreateResponse
impl RefUnwindSafe for ScheduleCreateResponse
impl Send for ScheduleCreateResponse
impl Sync for ScheduleCreateResponse
impl Unpin for ScheduleCreateResponse
impl UnsafeUnpin for ScheduleCreateResponse
impl UnwindSafe for ScheduleCreateResponse
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