pub struct WebCitation {
pub url: String,
pub title: Option<String>,
}Expand description
Web citation details.
Fields§
§url: StringThe URL of the source.
title: Option<String>The title of the source.
Trait Implementations§
Source§impl Clone for WebCitation
impl Clone for WebCitation
Source§fn clone(&self) -> WebCitation
fn clone(&self) -> WebCitation
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 WebCitation
impl Debug for WebCitation
Source§impl<'de> Deserialize<'de> for WebCitation
impl<'de> Deserialize<'de> for WebCitation
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 WebCitation
impl RefUnwindSafe for WebCitation
impl Send for WebCitation
impl Sync for WebCitation
impl Unpin for WebCitation
impl UnsafeUnpin for WebCitation
impl UnwindSafe for WebCitation
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