pub struct ListScriptsInput {
pub limit: Option<i64>,
pub next_token: Option<String>,
}Fields§
§limit: Option<i64>The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.
next_token: Option<String>A token that indicates the start of the next sequential page of results. Use the token that is returned with a previous call to this action. To start at the beginning of the result set, do not specify a value.
Trait Implementations§
Source§impl Clone for ListScriptsInput
impl Clone for ListScriptsInput
Source§fn clone(&self) -> ListScriptsInput
fn clone(&self) -> ListScriptsInput
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 ListScriptsInput
impl Debug for ListScriptsInput
Source§impl Default for ListScriptsInput
impl Default for ListScriptsInput
Source§fn default() -> ListScriptsInput
fn default() -> ListScriptsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListScriptsInput
impl PartialEq for ListScriptsInput
Source§impl Serialize for ListScriptsInput
impl Serialize for ListScriptsInput
impl StructuralPartialEq for ListScriptsInput
Auto Trait Implementations§
impl Freeze for ListScriptsInput
impl RefUnwindSafe for ListScriptsInput
impl Send for ListScriptsInput
impl Sync for ListScriptsInput
impl Unpin for ListScriptsInput
impl UnwindSafe for ListScriptsInput
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