pub struct DavVersionXml {
pub href: String,
pub version_name: String,
pub creator: String,
pub content_length: i64,
pub last_modified: String,
}Expand description
One version entry in a DeltaV version-tree response.
Fields§
§href: StringEncoded version href.
version_name: StringProtocol-visible version name.
creator: StringCreator display name.
content_length: i64Content length.
last_modified: StringHTTP-date formatted modification time.
Trait Implementations§
Source§impl Clone for DavVersionXml
impl Clone for DavVersionXml
Source§fn clone(&self) -> DavVersionXml
fn clone(&self) -> DavVersionXml
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 DavVersionXml
impl Debug for DavVersionXml
Source§impl PartialEq for DavVersionXml
impl PartialEq for DavVersionXml
Source§fn eq(&self, other: &DavVersionXml) -> bool
fn eq(&self, other: &DavVersionXml) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DavVersionXml
impl StructuralPartialEq for DavVersionXml
Auto Trait Implementations§
impl Freeze for DavVersionXml
impl RefUnwindSafe for DavVersionXml
impl Send for DavVersionXml
impl Sync for DavVersionXml
impl Unpin for DavVersionXml
impl UnsafeUnpin for DavVersionXml
impl UnwindSafe for DavVersionXml
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.