pub enum CoverallsService {
Github,
Bitbucket,
Gitlab,
}Expand description
Represents the values service can take in a coveralls = { ... } badge
Variants§
Github
coveralls = { service = "github" }
Bitbucket
coveralls = { service = "bitbucket" }
Gitlab
coveralls = { service = "gitlab" }
Trait Implementations§
Source§impl Clone for CoverallsService
impl Clone for CoverallsService
Source§fn clone(&self) -> CoverallsService
fn clone(&self) -> CoverallsService
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CoverallsService
Source§impl Debug for CoverallsService
impl Debug for CoverallsService
Source§impl Display for CoverallsService
impl Display for CoverallsService
Source§impl PartialEq for CoverallsService
impl PartialEq for CoverallsService
Source§fn eq(&self, other: &CoverallsService) -> bool
fn eq(&self, other: &CoverallsService) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CoverallsService
Auto Trait Implementations§
impl Freeze for CoverallsService
impl RefUnwindSafe for CoverallsService
impl Send for CoverallsService
impl Sync for CoverallsService
impl Unpin for CoverallsService
impl UnsafeUnpin for CoverallsService
impl UnwindSafe for CoverallsService
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> DependencyExt for Twhere
T: Display,
impl<T> DependencyExt for Twhere
T: Display,
Source§fn version(&self, version: &str) -> Dependency
fn version(&self, version: &str) -> Dependency
Constructs a
Dependency using self.to_string() as the name, and version as the
semver version Read moreSource§fn repo(&self, repo: &str) -> Dependency
fn repo(&self, repo: &str) -> Dependency
Constructs a
Dependency using self.to_string() as the name, and repo as the git
repository Read moreSource§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