pub struct Link {
pub title: String,
pub author: String,
pub time_sent: String,
pub url: String,
pub comments: Vec<Comment>,
pub index: String,
}Expand description
A struct that represents a Collection link
Fields§
§title: String§time_sent: String§url: String§comments: Vec<Comment>§index: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Link
impl RefUnwindSafe for Link
impl Send for Link
impl Sync for Link
impl Unpin for Link
impl UnwindSafe for Link
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