pub struct RecordFileLinks {
pub self_: Option<Url>,
pub content: Option<Url>,
pub extra: BTreeMap<String, Value>,
}Expand description
Per-file links returned on a record file.
Fields§
§self_: Option<Url>Canonical API URL for the file.
content: Option<Url>Direct content download URL.
extra: BTreeMap<String, Value>Additional untyped fields preserved for forward compatibility.
Trait Implementations§
Source§impl Clone for RecordFileLinks
impl Clone for RecordFileLinks
Source§fn clone(&self) -> RecordFileLinks
fn clone(&self) -> RecordFileLinks
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 RecordFileLinks
impl Debug for RecordFileLinks
Source§impl Default for RecordFileLinks
impl Default for RecordFileLinks
Source§fn default() -> RecordFileLinks
fn default() -> RecordFileLinks
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordFileLinks
impl<'de> Deserialize<'de> for RecordFileLinks
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
Source§impl PartialEq for RecordFileLinks
impl PartialEq for RecordFileLinks
Source§fn eq(&self, other: &RecordFileLinks) -> bool
fn eq(&self, other: &RecordFileLinks) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecordFileLinks
impl Serialize for RecordFileLinks
impl Eq for RecordFileLinks
impl StructuralPartialEq for RecordFileLinks
Auto Trait Implementations§
impl Freeze for RecordFileLinks
impl RefUnwindSafe for RecordFileLinks
impl Send for RecordFileLinks
impl Sync for RecordFileLinks
impl Unpin for RecordFileLinks
impl UnsafeUnpin for RecordFileLinks
impl UnwindSafe for RecordFileLinks
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