pub struct ProjectIds {
pub project_ids: Vec<String>,
}
Expand description
ProjectIds : A list of project IDs.
Fields§
§project_ids: Vec<String>
The IDs of projects.
Implementations§
Source§impl ProjectIds
impl ProjectIds
Sourcepub fn new(project_ids: Vec<String>) -> ProjectIds
pub fn new(project_ids: Vec<String>) -> ProjectIds
A list of project IDs.
Trait Implementations§
Source§impl Clone for ProjectIds
impl Clone for ProjectIds
Source§fn clone(&self) -> ProjectIds
fn clone(&self) -> ProjectIds
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 ProjectIds
impl Debug for ProjectIds
Source§impl Default for ProjectIds
impl Default for ProjectIds
Source§fn default() -> ProjectIds
fn default() -> ProjectIds
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectIds
impl<'de> Deserialize<'de> for ProjectIds
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 ProjectIds
impl PartialEq for ProjectIds
Source§impl Serialize for ProjectIds
impl Serialize for ProjectIds
impl StructuralPartialEq for ProjectIds
Auto Trait Implementations§
impl Freeze for ProjectIds
impl RefUnwindSafe for ProjectIds
impl Send for ProjectIds
impl Sync for ProjectIds
impl Unpin for ProjectIds
impl UnwindSafe for ProjectIds
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