pub struct ProjectBadge {
pub badge_enabled: Option<bool>,
pub badge_request_url: Option<String>,
}
Expand description
Information about the build badge for the build project.
Fields§
§badge_enabled: Option<bool>
Set this to true to generate a publicly accessible URL for your project's build badge.
badge_request_url: Option<String>
The publicly-accessible URL through which you can access the build badge for your project.
The publicly accessible URL through which you can access the build badge for your project.
Trait Implementations§
Source§impl Clone for ProjectBadge
impl Clone for ProjectBadge
Source§fn clone(&self) -> ProjectBadge
fn clone(&self) -> ProjectBadge
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 ProjectBadge
impl Debug for ProjectBadge
Source§impl Default for ProjectBadge
impl Default for ProjectBadge
Source§fn default() -> ProjectBadge
fn default() -> ProjectBadge
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectBadge
impl<'de> Deserialize<'de> for ProjectBadge
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 ProjectBadge
impl PartialEq for ProjectBadge
impl StructuralPartialEq for ProjectBadge
Auto Trait Implementations§
impl Freeze for ProjectBadge
impl RefUnwindSafe for ProjectBadge
impl Send for ProjectBadge
impl Sync for ProjectBadge
impl Unpin for ProjectBadge
impl UnwindSafe for ProjectBadge
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