pub struct VoiceFlowsPage {
pub items: Vec<VoiceFlowRecord>,
pub next_after: Option<String>,
}Expand description
One page of published flow snapshots.
Fields§
§items: Vec<VoiceFlowRecord>§next_after: Option<String>Cursor for the next page; None = end of the set.
Trait Implementations§
Source§impl Clone for VoiceFlowsPage
impl Clone for VoiceFlowsPage
Source§fn clone(&self) -> VoiceFlowsPage
fn clone(&self) -> VoiceFlowsPage
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 VoiceFlowsPage
impl Debug for VoiceFlowsPage
Source§impl<'de> Deserialize<'de> for VoiceFlowsPage
impl<'de> Deserialize<'de> for VoiceFlowsPage
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 VoiceFlowsPage
impl PartialEq for VoiceFlowsPage
Source§impl Serialize for VoiceFlowsPage
impl Serialize for VoiceFlowsPage
impl StructuralPartialEq for VoiceFlowsPage
Auto Trait Implementations§
impl Freeze for VoiceFlowsPage
impl RefUnwindSafe for VoiceFlowsPage
impl Send for VoiceFlowsPage
impl Sync for VoiceFlowsPage
impl Unpin for VoiceFlowsPage
impl UnsafeUnpin for VoiceFlowsPage
impl UnwindSafe for VoiceFlowsPage
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