pub struct RemoteEntry {
pub domain: String,
pub latest_timestamp: DateTime<Utc>,
pub node_count: usize,
}Expand description
A remote registry entry listing.
Fields§
§domain: String§latest_timestamp: DateTime<Utc>§node_count: usizeTrait Implementations§
Source§impl Clone for RemoteEntry
impl Clone for RemoteEntry
Source§fn clone(&self) -> RemoteEntry
fn clone(&self) -> RemoteEntry
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 RemoteEntry
impl Debug for RemoteEntry
Source§impl<'de> Deserialize<'de> for RemoteEntry
impl<'de> Deserialize<'de> for RemoteEntry
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 RemoteEntry
impl RefUnwindSafe for RemoteEntry
impl Send for RemoteEntry
impl Sync for RemoteEntry
impl Unpin for RemoteEntry
impl UnsafeUnpin for RemoteEntry
impl UnwindSafe for RemoteEntry
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