pub struct ListDistributionsRequest {
pub marker: Option<String>,
pub max_items: Option<String>,
}
Expand description
The request to list your distributions.
Fields§
§marker: Option<String>
Use this when paginating results to indicate where to begin in your list of distributions. The results include distributions in the list that occur after the marker. To get the next page of results, set the Marker
to the value of the NextMarker
from the current page's response (which is also the ID of the last distribution on that page).
max_items: Option<String>
The maximum number of distributions you want in the response body.
Trait Implementations§
Source§impl Clone for ListDistributionsRequest
impl Clone for ListDistributionsRequest
Source§fn clone(&self) -> ListDistributionsRequest
fn clone(&self) -> ListDistributionsRequest
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 ListDistributionsRequest
impl Debug for ListDistributionsRequest
Source§impl Default for ListDistributionsRequest
impl Default for ListDistributionsRequest
Source§fn default() -> ListDistributionsRequest
fn default() -> ListDistributionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListDistributionsRequest
impl PartialEq for ListDistributionsRequest
impl StructuralPartialEq for ListDistributionsRequest
Auto Trait Implementations§
impl Freeze for ListDistributionsRequest
impl RefUnwindSafe for ListDistributionsRequest
impl Send for ListDistributionsRequest
impl Sync for ListDistributionsRequest
impl Unpin for ListDistributionsRequest
impl UnwindSafe for ListDistributionsRequest
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