pub struct FileLinksResponse {
pub git: Option<String>,
pub html: Option<String>,
pub this: Option<String>,
}Expand description
FileLinksResponse contains the links for a repo’s file
Fields§
§git: Option<String>§html: Option<String>§this: Option<String>Trait Implementations§
Source§impl Clone for FileLinksResponse
impl Clone for FileLinksResponse
Source§fn clone(&self) -> FileLinksResponse
fn clone(&self) -> FileLinksResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FileLinksResponse
impl Debug for FileLinksResponse
Source§impl<'de> Deserialize<'de> for FileLinksResponse
impl<'de> Deserialize<'de> for FileLinksResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FileLinksResponse
impl PartialEq for FileLinksResponse
Source§impl Serialize for FileLinksResponse
impl Serialize for FileLinksResponse
impl StructuralPartialEq for FileLinksResponse
Auto Trait Implementations§
impl Freeze for FileLinksResponse
impl RefUnwindSafe for FileLinksResponse
impl Send for FileLinksResponse
impl Sync for FileLinksResponse
impl Unpin for FileLinksResponse
impl UnwindSafe for FileLinksResponse
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