pub struct ActionsPublicKey {
pub key_id: String,
pub key: String,
pub id: Option<i32>,
pub url: Option<String>,
pub title: Option<String>,
pub created_at: Option<String>,
}
Expand description
ActionsPublicKey : The public key used for setting Actions Secrets.
Fields§
§key_id: String
The identifier for the key.
key: String
The Base64 encoded public key.
id: Option<i32>
§url: Option<String>
§title: Option<String>
§created_at: Option<String>
Implementations§
Source§impl ActionsPublicKey
impl ActionsPublicKey
Sourcepub fn new(key_id: String, key: String) -> ActionsPublicKey
pub fn new(key_id: String, key: String) -> ActionsPublicKey
The public key used for setting Actions Secrets.
Trait Implementations§
Source§impl Clone for ActionsPublicKey
impl Clone for ActionsPublicKey
Source§fn clone(&self) -> ActionsPublicKey
fn clone(&self) -> ActionsPublicKey
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 ActionsPublicKey
impl Debug for ActionsPublicKey
Source§impl Default for ActionsPublicKey
impl Default for ActionsPublicKey
Source§fn default() -> ActionsPublicKey
fn default() -> ActionsPublicKey
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsPublicKey
impl<'de> Deserialize<'de> for ActionsPublicKey
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 ActionsPublicKey
impl PartialEq for ActionsPublicKey
Source§impl Serialize for ActionsPublicKey
impl Serialize for ActionsPublicKey
impl StructuralPartialEq for ActionsPublicKey
Auto Trait Implementations§
impl Freeze for ActionsPublicKey
impl RefUnwindSafe for ActionsPublicKey
impl Send for ActionsPublicKey
impl Sync for ActionsPublicKey
impl Unpin for ActionsPublicKey
impl UnwindSafe for ActionsPublicKey
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