pub struct ListScriptsOutput {
pub next_token: Option<String>,
pub scripts: Option<Vec<Script>>,
}Fields§
§next_token: Option<String>A token that indicates where to resume retrieving results on the next call to this action. If no token is returned, these results represent the end of the list.
scripts: Option<Vec<Script>>A set of properties describing the requested script.
Trait Implementations§
Source§impl Clone for ListScriptsOutput
impl Clone for ListScriptsOutput
Source§fn clone(&self) -> ListScriptsOutput
fn clone(&self) -> ListScriptsOutput
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 ListScriptsOutput
impl Debug for ListScriptsOutput
Source§impl Default for ListScriptsOutput
impl Default for ListScriptsOutput
Source§fn default() -> ListScriptsOutput
fn default() -> ListScriptsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListScriptsOutput
impl<'de> Deserialize<'de> for ListScriptsOutput
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 ListScriptsOutput
impl PartialEq for ListScriptsOutput
impl StructuralPartialEq for ListScriptsOutput
Auto Trait Implementations§
impl Freeze for ListScriptsOutput
impl RefUnwindSafe for ListScriptsOutput
impl Send for ListScriptsOutput
impl Sync for ListScriptsOutput
impl Unpin for ListScriptsOutput
impl UnwindSafe for ListScriptsOutput
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