pub struct RepoLink {
pub id: i64,
pub worktree_id: i64,
pub url: String,
pub kind: String,
pub created_at: DateTime<Utc>,
}Expand description
Represents a remote repository link for a worktree.
RepoLinks store URLs to remote repositories (e.g., GitHub, GitLab) and their types (e.g., “origin”, “upstream”).
Fields§
§id: i64§worktree_id: i64§url: String§kind: String§created_at: DateTime<Utc>Trait Implementations§
Auto Trait Implementations§
impl Freeze for RepoLink
impl RefUnwindSafe for RepoLink
impl Send for RepoLink
impl Sync for RepoLink
impl Unpin for RepoLink
impl UnsafeUnpin for RepoLink
impl UnwindSafe for RepoLink
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