pub struct DecisionListPage {
pub items: Vec<Decision>,
pub next_cursor: Option<String>,
pub has_more: bool,
}Expand description
One page of crate::resources::Decisions::list.
Fields§
§items: Vec<Decision>Decisions in this page.
next_cursor: Option<String>Cursor for the next page, if any.
has_more: boolWhether more pages follow.
Trait Implementations§
Source§impl Clone for DecisionListPage
impl Clone for DecisionListPage
Source§fn clone(&self) -> DecisionListPage
fn clone(&self) -> DecisionListPage
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 DecisionListPage
impl Debug for DecisionListPage
Source§impl<'de> Deserialize<'de> for DecisionListPage
impl<'de> Deserialize<'de> for DecisionListPage
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
Auto Trait Implementations§
impl Freeze for DecisionListPage
impl RefUnwindSafe for DecisionListPage
impl Send for DecisionListPage
impl Sync for DecisionListPage
impl Unpin for DecisionListPage
impl UnsafeUnpin for DecisionListPage
impl UnwindSafe for DecisionListPage
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