pub struct RepoInfo {
pub owner: &'static str,
pub name: &'static str,
}Expand description
Repository information for CLI tools.
This structure holds basic repository metadata for identification purposes.
Fields§
§owner: &'static strRepository owner (e.g., “workhelix”)
name: &'static strRepository name (e.g., “prompter”)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RepoInfo
impl RefUnwindSafe for RepoInfo
impl Send for RepoInfo
impl Sync for RepoInfo
impl Unpin for RepoInfo
impl UnsafeUnpin for RepoInfo
impl UnwindSafe for RepoInfo
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