pub struct CkRecord {
pub record_name: String,
pub record_type: String,
pub zone_id: Option<ZoneId>,
pub fields: Fields,
pub plugin_fields: HashMap<String, Value>,
pub record_change_tag: Option<String>,
pub created: Option<Value>,
pub modified: Option<Value>,
pub deleted: bool,
pub server_error_code: Option<String>,
pub reason: Option<String>,
}Fields§
§record_name: String§record_type: String§zone_id: Option<ZoneId>§fields: Fields§plugin_fields: HashMap<String, Value>§record_change_tag: Option<String>§created: Option<Value>§modified: Option<Value>§deleted: bool§server_error_code: Option<String>§reason: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CkRecord
impl<'de> Deserialize<'de> for CkRecord
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 CkRecord
impl RefUnwindSafe for CkRecord
impl Send for CkRecord
impl Sync for CkRecord
impl Unpin for CkRecord
impl UnsafeUnpin for CkRecord
impl UnwindSafe for CkRecord
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