pub struct GitHubConnectionReposBatchRequest {
pub git_hub_repository_urls: Vec<GitHubConnectionRepoModel>,
pub operation_type: Option<String>,
}Expand description
Describes Github connection’s repo bulk request
Fields§
§git_hub_repository_urls: Vec<GitHubConnectionRepoModel>Requested repos urls
operation_type: Option<String>Operation type (f. e. add, remove)
Implementations§
Trait Implementations§
Source§impl Clone for GitHubConnectionReposBatchRequest
impl Clone for GitHubConnectionReposBatchRequest
Source§fn clone(&self) -> GitHubConnectionReposBatchRequest
fn clone(&self) -> GitHubConnectionReposBatchRequest
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 GitHubConnectionReposBatchRequest
impl Default for GitHubConnectionReposBatchRequest
Source§fn default() -> GitHubConnectionReposBatchRequest
fn default() -> GitHubConnectionReposBatchRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitHubConnectionReposBatchRequest
impl<'de> Deserialize<'de> for GitHubConnectionReposBatchRequest
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 GitHubConnectionReposBatchRequest
impl PartialEq for GitHubConnectionReposBatchRequest
Source§fn eq(&self, other: &GitHubConnectionReposBatchRequest) -> bool
fn eq(&self, other: &GitHubConnectionReposBatchRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GitHubConnectionReposBatchRequest
Auto Trait Implementations§
impl Freeze for GitHubConnectionReposBatchRequest
impl RefUnwindSafe for GitHubConnectionReposBatchRequest
impl Send for GitHubConnectionReposBatchRequest
impl Sync for GitHubConnectionReposBatchRequest
impl Unpin for GitHubConnectionReposBatchRequest
impl UnwindSafe for GitHubConnectionReposBatchRequest
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