pub struct WebhooksDeployKey {
pub added_by: Option<Option<String>>,
pub created_at: String,
pub id: i32,
pub key: String,
pub last_used: Option<Option<String>>,
pub read_only: bool,
pub title: String,
pub url: String,
pub verified: bool,
}
Expand description
WebhooksDeployKey : The deploy key
resource.
Fields§
§added_by: Option<Option<String>>
§created_at: String
§id: i32
§key: String
§last_used: Option<Option<String>>
§read_only: bool
§title: String
§url: String
§verified: bool
Implementations§
Trait Implementations§
Source§impl Clone for WebhooksDeployKey
impl Clone for WebhooksDeployKey
Source§fn clone(&self) -> WebhooksDeployKey
fn clone(&self) -> WebhooksDeployKey
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 WebhooksDeployKey
impl Debug for WebhooksDeployKey
Source§impl Default for WebhooksDeployKey
impl Default for WebhooksDeployKey
Source§fn default() -> WebhooksDeployKey
fn default() -> WebhooksDeployKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhooksDeployKey
impl<'de> Deserialize<'de> for WebhooksDeployKey
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 WebhooksDeployKey
impl PartialEq for WebhooksDeployKey
Source§impl Serialize for WebhooksDeployKey
impl Serialize for WebhooksDeployKey
impl StructuralPartialEq for WebhooksDeployKey
Auto Trait Implementations§
impl Freeze for WebhooksDeployKey
impl RefUnwindSafe for WebhooksDeployKey
impl Send for WebhooksDeployKey
impl Sync for WebhooksDeployKey
impl Unpin for WebhooksDeployKey
impl UnwindSafe for WebhooksDeployKey
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