pub struct GitLabConfig {
pub url: String,
pub namespace: String,
}Expand description
GitLab configuration
Fields§
§url: StringGitLab instance URL
namespace: StringProject namespace/group
Trait Implementations§
Source§impl Clone for GitLabConfig
impl Clone for GitLabConfig
Source§fn clone(&self) -> GitLabConfig
fn clone(&self) -> GitLabConfig
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 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 Serialize for GitLabConfig
impl Serialize for GitLabConfig
Source§impl Validate for GitLabConfig
impl Validate for GitLabConfig
Source§impl<'v_a> ValidateArgs<'v_a> for GitLabConfig
impl<'v_a> ValidateArgs<'v_a> 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