pub struct GitUrlComponents {
pub domain: String,
pub username: String,
pub repo: String,
pub suffix: String,
}Fields§
§domain: String§username: String§repo: String§suffix: StringTrait Implementations§
Source§impl Debug for GitUrlComponents
impl Debug for GitUrlComponents
Source§impl Default for GitUrlComponents
impl Default for GitUrlComponents
Source§fn default() -> GitUrlComponents
fn default() -> GitUrlComponents
Returns the “default value” for a type. Read more
Source§impl PartialEq for GitUrlComponents
impl PartialEq for GitUrlComponents
impl StructuralPartialEq for GitUrlComponents
Auto Trait Implementations§
impl Freeze for GitUrlComponents
impl RefUnwindSafe for GitUrlComponents
impl Send for GitUrlComponents
impl Sync for GitUrlComponents
impl Unpin for GitUrlComponents
impl UnwindSafe for GitUrlComponents
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> 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