pub struct ListBuildsOutput {
pub ids: Option<Vec<String>>,
pub next_token: Option<String>,
}
Fields§
§ids: Option<Vec<String>>
A list of build IDs, with each build ID representing a single build.
next_token: Option<String>
If there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call.
Trait Implementations§
Source§impl Clone for ListBuildsOutput
impl Clone for ListBuildsOutput
Source§fn clone(&self) -> ListBuildsOutput
fn clone(&self) -> ListBuildsOutput
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 ListBuildsOutput
impl Debug for ListBuildsOutput
Source§impl Default for ListBuildsOutput
impl Default for ListBuildsOutput
Source§fn default() -> ListBuildsOutput
fn default() -> ListBuildsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListBuildsOutput
impl<'de> Deserialize<'de> for ListBuildsOutput
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 ListBuildsOutput
impl PartialEq for ListBuildsOutput
impl StructuralPartialEq for ListBuildsOutput
Auto Trait Implementations§
impl Freeze for ListBuildsOutput
impl RefUnwindSafe for ListBuildsOutput
impl Send for ListBuildsOutput
impl Sync for ListBuildsOutput
impl Unpin for ListBuildsOutput
impl UnwindSafe for ListBuildsOutput
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