pub struct ReferenceLinks {
pub commits: Option<Link>,
pub items: Option<Link>,
pub project: Option<Link>,
pub pull_requests: Option<Link>,
pub pushes: Option<Link>,
pub refs: Option<Link>,
pub self_: Option<Link>,
pub ssh: Option<Link>,
pub web: Option<Link>,
}Expand description
The class to represent a collection of REST reference links.
Fields§
§commits: Option<Link>Link URL
items: Option<Link>Link URL
project: Option<Link>Link URL
pull_requests: Option<Link>Link URL
pushes: Option<Link>Link URL
refs: Option<Link>Link URL
self_: Option<Link>Link URL
ssh: Option<Link>Link URL
web: Option<Link>Link URL
Implementations§
Trait Implementations§
Source§impl Clone for ReferenceLinks
impl Clone for ReferenceLinks
Source§fn clone(&self) -> ReferenceLinks
fn clone(&self) -> ReferenceLinks
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 ReferenceLinks
impl Debug for ReferenceLinks
Source§impl Default for ReferenceLinks
impl Default for ReferenceLinks
Source§fn default() -> ReferenceLinks
fn default() -> ReferenceLinks
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReferenceLinks
impl<'de> Deserialize<'de> for ReferenceLinks
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 ReferenceLinks
impl PartialEq for ReferenceLinks
Source§impl Serialize for ReferenceLinks
impl Serialize for ReferenceLinks
impl StructuralPartialEq for ReferenceLinks
Auto Trait Implementations§
impl Freeze for ReferenceLinks
impl RefUnwindSafe for ReferenceLinks
impl Send for ReferenceLinks
impl Sync for ReferenceLinks
impl Unpin for ReferenceLinks
impl UnwindSafe for ReferenceLinks
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