#[non_exhaustive]pub struct URIs {
pub html: String,
pub git_https: String,
pub api: String,
/* private fields */
}Expand description
URIs for the repository.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.html: StringOutput only. HTML is the URI for user to view the repository in a browser.
git_https: StringOutput only. git_https is the git HTTPS URI for git operations.
api: StringOutput only. API is the URI for API access.
Implementations§
Trait Implementations§
impl StructuralPartialEq for URIs
Auto Trait Implementations§
impl Freeze for URIs
impl RefUnwindSafe for URIs
impl Send for URIs
impl Sync for URIs
impl Unpin for URIs
impl UnwindSafe for URIs
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