pub struct Link {
pub id: i64,
pub task_id: i64,
pub task_index: i64,
pub url: String,
pub title: String,
pub created_at: DateTime<Utc>,
}Expand description
Represents a link associated with a task.
Links are URLs with titles that provide context or reference material for a task.
Fields§
§id: i64§task_id: i64§task_index: i64Task-scoped sequential ID for this link
url: String§title: String§created_at: DateTime<Utc>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 UnsafeUnpin 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