pub struct GitlabProvider {
pub name: String,
pub url: String,
/* private fields */
}
Fields§
§name: String
The name of the gitlab group or namespace to add. Can include slashes.
url: String
Gitlab instance URL
Trait Implementations§
Source§impl Args for GitlabProvider
impl Args for GitlabProvider
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to
Command
so it can instantiate self
via
FromArgMatches::update_from_arg_matches_mut
Read moreSource§impl CommandFactory for GitlabProvider
impl CommandFactory for GitlabProvider
Source§impl Debug for GitlabProvider
impl Debug for GitlabProvider
Source§impl Default for GitlabProvider
impl Default for GitlabProvider
Source§fn default() -> GitlabProvider
fn default() -> GitlabProvider
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitlabProvider
impl<'de> Deserialize<'de> for GitlabProvider
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 Display for GitlabProvider
impl Display for GitlabProvider
Source§impl FromArgMatches for GitlabProvider
impl FromArgMatches for GitlabProvider
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Source§impl Ord for GitlabProvider
impl Ord for GitlabProvider
Source§fn cmp(&self, other: &GitlabProvider) -> Ordering
fn cmp(&self, other: &GitlabProvider) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl Parser for GitlabProvider
impl Parser for GitlabProvider
Source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error.
Source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
Source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Source§impl PartialEq for GitlabProvider
impl PartialEq for GitlabProvider
Source§impl PartialOrd for GitlabProvider
impl PartialOrd for GitlabProvider
Source§impl Provider for GitlabProvider
impl Provider for GitlabProvider
Source§fn correctly_configured(&self) -> bool
fn correctly_configured(&self) -> bool
Returns true if the provider should work, otherwise prints an error and return false
fn fetch_repositories(&self) -> Result<Vec<Repository>>
Source§impl Serialize for GitlabProvider
impl Serialize for GitlabProvider
impl Eq for GitlabProvider
impl StructuralPartialEq for GitlabProvider
Auto Trait Implementations§
impl Freeze for GitlabProvider
impl RefUnwindSafe for GitlabProvider
impl Send for GitlabProvider
impl Sync for GitlabProvider
impl Unpin for GitlabProvider
impl UnwindSafe for GitlabProvider
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
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more