pub struct GitLabConfig {
pub api_key: Secret<String>,
pub host: String,
pub organisations: bool,
pub owned: bool,
}
Expand description
Github-specific settings.
Fields§
§api_key: Secret<String>
The API key to use. Make sure you create a new personal access token and give it the “api” scope, if you haven’t already.
host: String
Hostname of the GitLab instance to fetch repositories from.
organisations: bool
Should we download all repos owned by organisations you are a part of? (default: false)
owned: bool
Should we download all owned repos? (default: true)
Trait Implementations§
Source§impl Clone for GitLabConfig
impl Clone for GitLabConfig
Source§fn clone(&self) -> GitLabConfig
fn clone(&self) -> GitLabConfig
Returns a copy 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 GitLabConfig
impl Debug for GitLabConfig
Source§impl<'de> Deserialize<'de> for GitLabConfig
impl<'de> Deserialize<'de> for GitLabConfig
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 GitLabConfig
impl PartialEq for GitLabConfig
Source§impl Serialize for GitLabConfig
impl Serialize for GitLabConfig
impl StructuralPartialEq for GitLabConfig
Auto Trait Implementations§
impl Freeze for GitLabConfig
impl RefUnwindSafe for GitLabConfig
impl Send for GitLabConfig
impl Sync for GitLabConfig
impl Unpin for GitLabConfig
impl UnwindSafe for GitLabConfig
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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