pub struct OrganizationDependabotSecret {
pub name: String,
pub created_at: String,
pub updated_at: String,
pub visibility: Visibility,
pub selected_repositories_url: Option<String>,
}Expand description
OrganizationDependabotSecret : Secrets for GitHub Dependabot for an organization.
Fields§
§name: StringThe name of the secret.
created_at: String§updated_at: String§visibility: VisibilityVisibility of a secret
selected_repositories_url: Option<String>Implementations§
Source§impl OrganizationDependabotSecret
impl OrganizationDependabotSecret
Sourcepub fn new(
name: String,
created_at: String,
updated_at: String,
visibility: Visibility,
) -> OrganizationDependabotSecret
pub fn new( name: String, created_at: String, updated_at: String, visibility: Visibility, ) -> OrganizationDependabotSecret
Secrets for GitHub Dependabot for an organization.
Trait Implementations§
Source§impl Clone for OrganizationDependabotSecret
impl Clone for OrganizationDependabotSecret
Source§fn clone(&self) -> OrganizationDependabotSecret
fn clone(&self) -> OrganizationDependabotSecret
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 OrganizationDependabotSecret
impl Debug for OrganizationDependabotSecret
Source§impl Default for OrganizationDependabotSecret
impl Default for OrganizationDependabotSecret
Source§fn default() -> OrganizationDependabotSecret
fn default() -> OrganizationDependabotSecret
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationDependabotSecret
impl<'de> Deserialize<'de> for OrganizationDependabotSecret
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 OrganizationDependabotSecret
impl PartialEq for OrganizationDependabotSecret
Source§fn eq(&self, other: &OrganizationDependabotSecret) -> bool
fn eq(&self, other: &OrganizationDependabotSecret) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrganizationDependabotSecret
Auto Trait Implementations§
impl Freeze for OrganizationDependabotSecret
impl RefUnwindSafe for OrganizationDependabotSecret
impl Send for OrganizationDependabotSecret
impl Sync for OrganizationDependabotSecret
impl Unpin for OrganizationDependabotSecret
impl UnwindSafe for OrganizationDependabotSecret
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