pub struct CreateDNSRecord {
pub name: String,
pub type: String,
pub ttl: i32,
pub rrdatas: Vec<String>,
pub signatureRrdatas: Option<Vec<String>>,
pub kind: String,
}Fields§
§name: String§type: String§ttl: i32§rrdatas: Vec<String>§signatureRrdatas: Option<Vec<String>>§kind: StringTrait Implementations§
Source§impl Debug for CreateDNSRecord
impl Debug for CreateDNSRecord
Source§impl<'de> Deserialize<'de> for CreateDNSRecord
impl<'de> Deserialize<'de> for CreateDNSRecord
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
Auto Trait Implementations§
impl Freeze for CreateDNSRecord
impl RefUnwindSafe for CreateDNSRecord
impl Send for CreateDNSRecord
impl Sync for CreateDNSRecord
impl Unpin for CreateDNSRecord
impl UnsafeUnpin for CreateDNSRecord
impl UnwindSafe for CreateDNSRecord
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