pub struct BatchGetRepositoriesInput {
pub repository_names: Vec<String>,
}Expand description
Represents the input of a batch get repositories operation.
Fields§
§repository_names: Vec<String>The names of the repositories to get information about.
The length constraint limit is for each string in the array. The array itself can be empty.
Trait Implementations§
Source§impl Clone for BatchGetRepositoriesInput
impl Clone for BatchGetRepositoriesInput
Source§fn clone(&self) -> BatchGetRepositoriesInput
fn clone(&self) -> BatchGetRepositoriesInput
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 BatchGetRepositoriesInput
impl Debug for BatchGetRepositoriesInput
Source§impl Default for BatchGetRepositoriesInput
impl Default for BatchGetRepositoriesInput
Source§fn default() -> BatchGetRepositoriesInput
fn default() -> BatchGetRepositoriesInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for BatchGetRepositoriesInput
Auto Trait Implementations§
impl Freeze for BatchGetRepositoriesInput
impl RefUnwindSafe for BatchGetRepositoriesInput
impl Send for BatchGetRepositoriesInput
impl Sync for BatchGetRepositoriesInput
impl Unpin for BatchGetRepositoriesInput
impl UnwindSafe for BatchGetRepositoriesInput
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