pub struct AddSshKeyBody {
pub public_key: String,
pub title: String,
}Expand description
AddSshKeyBody
JSON schema
{
"type": "object",
"required": [
"public_key",
"title"
],
"properties": {
"public_key": {
"type": "string"
},
"title": {
"type": "string"
}
}
}Fields§
§public_key: String§title: StringImplementations§
Source§impl AddSshKeyBody
impl AddSshKeyBody
pub fn builder() -> AddSshKeyBody
Trait Implementations§
Source§impl Clone for AddSshKeyBody
impl Clone for AddSshKeyBody
Source§fn clone(&self) -> AddSshKeyBody
fn clone(&self) -> AddSshKeyBody
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 AddSshKeyBody
impl Debug for AddSshKeyBody
Source§impl<'de> Deserialize<'de> for AddSshKeyBody
impl<'de> Deserialize<'de> for AddSshKeyBody
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 From<&AddSshKeyBody> for AddSshKeyBody
impl From<&AddSshKeyBody> for AddSshKeyBody
Source§fn from(value: &AddSshKeyBody) -> Self
fn from(value: &AddSshKeyBody) -> Self
Converts to this type from the input type.
Source§impl From<AddSshKeyBody> for AddSshKeyBody
impl From<AddSshKeyBody> for AddSshKeyBody
Source§fn from(value: AddSshKeyBody) -> Self
fn from(value: AddSshKeyBody) -> Self
Converts to this type from the input type.
Source§impl Serialize for AddSshKeyBody
impl Serialize for AddSshKeyBody
Source§impl TryFrom<AddSshKeyBody> for AddSshKeyBody
impl TryFrom<AddSshKeyBody> for AddSshKeyBody
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AddSshKeyBody) -> Result<Self, ConversionError>
fn try_from(value: AddSshKeyBody) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AddSshKeyBody
impl RefUnwindSafe for AddSshKeyBody
impl Send for AddSshKeyBody
impl Sync for AddSshKeyBody
impl Unpin for AddSshKeyBody
impl UnsafeUnpin for AddSshKeyBody
impl UnwindSafe for AddSshKeyBody
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