#[non_exhaustive]pub struct FetchLinkableRepositoriesRequest {
pub connection: String,
pub page_size: i32,
pub page_token: String,
/* private fields */
}Expand description
Request message for FetchLinkableRepositories.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.connection: StringRequired. The name of the Connection.
Format: projects/*/locations/*/connections/*.
page_size: i32Number of results to return in the list. Default to 20.
page_token: StringPage start.
Implementations§
Source§impl FetchLinkableRepositoriesRequest
impl FetchLinkableRepositoriesRequest
pub fn new() -> Self
Sourcepub fn set_connection<T: Into<String>>(self, v: T) -> Self
pub fn set_connection<T: Into<String>>(self, v: T) -> Self
Sets the value of connection.
Sourcepub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
pub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
Sets the value of page_size.
Sourcepub fn set_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of page_token.
Trait Implementations§
Source§impl Clone for FetchLinkableRepositoriesRequest
impl Clone for FetchLinkableRepositoriesRequest
Source§fn clone(&self) -> FetchLinkableRepositoriesRequest
fn clone(&self) -> FetchLinkableRepositoriesRequest
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 Default for FetchLinkableRepositoriesRequest
impl Default for FetchLinkableRepositoriesRequest
Source§fn default() -> FetchLinkableRepositoriesRequest
fn default() -> FetchLinkableRepositoriesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for FetchLinkableRepositoriesRequest
impl PartialEq for FetchLinkableRepositoriesRequest
Source§fn eq(&self, other: &FetchLinkableRepositoriesRequest) -> bool
fn eq(&self, other: &FetchLinkableRepositoriesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FetchLinkableRepositoriesRequest
Auto Trait Implementations§
impl Freeze for FetchLinkableRepositoriesRequest
impl RefUnwindSafe for FetchLinkableRepositoriesRequest
impl Send for FetchLinkableRepositoriesRequest
impl Sync for FetchLinkableRepositoriesRequest
impl Unpin for FetchLinkableRepositoriesRequest
impl UnwindSafe for FetchLinkableRepositoriesRequest
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