pub struct ListStreamsRequest {
pub ascending_order: Option<bool>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}Fields§
§ascending_order: Option<bool>Set to true to return the list of streams in ascending order.
max_results: Option<i64>The maximum number of results to return at a time.
next_token: Option<String>A token used to get the next set of results.
Trait Implementations§
Source§impl Clone for ListStreamsRequest
impl Clone for ListStreamsRequest
Source§fn clone(&self) -> ListStreamsRequest
fn clone(&self) -> ListStreamsRequest
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 ListStreamsRequest
impl Debug for ListStreamsRequest
Source§impl Default for ListStreamsRequest
impl Default for ListStreamsRequest
Source§fn default() -> ListStreamsRequest
fn default() -> ListStreamsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListStreamsRequest
impl PartialEq for ListStreamsRequest
Source§impl Serialize for ListStreamsRequest
impl Serialize for ListStreamsRequest
impl StructuralPartialEq for ListStreamsRequest
Auto Trait Implementations§
impl Freeze for ListStreamsRequest
impl RefUnwindSafe for ListStreamsRequest
impl Send for ListStreamsRequest
impl Sync for ListStreamsRequest
impl Unpin for ListStreamsRequest
impl UnwindSafe for ListStreamsRequest
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