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