pub struct ExistingDnsRecord {
pub record_id: i64,
pub name: String,
pub record_type: String,
pub data: String,
pub priority: Option<u16>,
}Fields§
§record_id: i64§name: String§record_type: String§data: String§priority: Option<u16>Trait Implementations§
Source§impl Clone for ExistingDnsRecord
impl Clone for ExistingDnsRecord
Source§fn clone(&self) -> ExistingDnsRecord
fn clone(&self) -> ExistingDnsRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExistingDnsRecord
impl Debug for ExistingDnsRecord
Source§impl<'de> Deserialize<'de> for ExistingDnsRecord
impl<'de> Deserialize<'de> for ExistingDnsRecord
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 ExistingDnsRecord
impl RefUnwindSafe for ExistingDnsRecord
impl Send for ExistingDnsRecord
impl Sync for ExistingDnsRecord
impl Unpin for ExistingDnsRecord
impl UnsafeUnpin for ExistingDnsRecord
impl UnwindSafe for ExistingDnsRecord
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