pub struct BatchGetBuildsOutput {
pub builds: Option<Vec<Build>>,
pub builds_not_found: Option<Vec<String>>,
}
Fields§
§builds: Option<Vec<Build>>
Information about the requested builds.
builds_not_found: Option<Vec<String>>
The IDs of builds for which information could not be found.
Trait Implementations§
Source§impl Clone for BatchGetBuildsOutput
impl Clone for BatchGetBuildsOutput
Source§fn clone(&self) -> BatchGetBuildsOutput
fn clone(&self) -> BatchGetBuildsOutput
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 BatchGetBuildsOutput
impl Debug for BatchGetBuildsOutput
Source§impl Default for BatchGetBuildsOutput
impl Default for BatchGetBuildsOutput
Source§fn default() -> BatchGetBuildsOutput
fn default() -> BatchGetBuildsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchGetBuildsOutput
impl<'de> Deserialize<'de> for BatchGetBuildsOutput
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 BatchGetBuildsOutput
impl PartialEq for BatchGetBuildsOutput
impl StructuralPartialEq for BatchGetBuildsOutput
Auto Trait Implementations§
impl Freeze for BatchGetBuildsOutput
impl RefUnwindSafe for BatchGetBuildsOutput
impl Send for BatchGetBuildsOutput
impl Sync for BatchGetBuildsOutput
impl Unpin for BatchGetBuildsOutput
impl UnwindSafe for BatchGetBuildsOutput
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