pub struct PaginatedFlowList {
pub pagination: Box<Pagination>,
pub results: Vec<Flow>,
}
Fields§
§pagination: Box<Pagination>
§results: Vec<Flow>
Implementations§
Source§impl PaginatedFlowList
impl PaginatedFlowList
pub fn new(pagination: Pagination, results: Vec<Flow>) -> PaginatedFlowList
Trait Implementations§
Source§impl Clone for PaginatedFlowList
impl Clone for PaginatedFlowList
Source§fn clone(&self) -> PaginatedFlowList
fn clone(&self) -> PaginatedFlowList
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 Debug for PaginatedFlowList
impl Debug for PaginatedFlowList
Source§impl Default for PaginatedFlowList
impl Default for PaginatedFlowList
Source§fn default() -> PaginatedFlowList
fn default() -> PaginatedFlowList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PaginatedFlowList
impl<'de> Deserialize<'de> for PaginatedFlowList
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 PaginatedFlowList
impl PartialEq for PaginatedFlowList
Source§impl Serialize for PaginatedFlowList
impl Serialize for PaginatedFlowList
impl StructuralPartialEq for PaginatedFlowList
Auto Trait Implementations§
impl Freeze for PaginatedFlowList
impl RefUnwindSafe for PaginatedFlowList
impl Send for PaginatedFlowList
impl Sync for PaginatedFlowList
impl Unpin for PaginatedFlowList
impl UnwindSafe for PaginatedFlowList
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