Struct azure_devops_rust_api::git::models::GitBlobRef
source · pub struct GitBlobRef {
pub links: Option<ReferenceLinks>,
pub object_id: Option<String>,
pub size: Option<i64>,
pub url: Option<String>,
}
Expand description
Fields§
§links: Option<ReferenceLinks>
The class to represent a collection of REST reference links.
object_id: Option<String>
SHA1 hash of git object
size: Option<i64>
Size of blob content (in bytes)
url: Option<String>
Implementations§
source§impl GitBlobRef
impl GitBlobRef
Trait Implementations§
source§impl Clone for GitBlobRef
impl Clone for GitBlobRef
source§fn clone(&self) -> GitBlobRef
fn clone(&self) -> GitBlobRef
Returns a copy 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 GitBlobRef
impl Debug for GitBlobRef
source§impl Default for GitBlobRef
impl Default for GitBlobRef
source§fn default() -> GitBlobRef
fn default() -> GitBlobRef
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for GitBlobRef
impl<'de> Deserialize<'de> for GitBlobRef
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 GitBlobRef
impl PartialEq for GitBlobRef
source§fn eq(&self, other: &GitBlobRef) -> bool
fn eq(&self, other: &GitBlobRef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GitBlobRef
impl Serialize for GitBlobRef
impl StructuralPartialEq for GitBlobRef
Auto Trait Implementations§
impl Freeze for GitBlobRef
impl RefUnwindSafe for GitBlobRef
impl Send for GitBlobRef
impl Sync for GitBlobRef
impl Unpin for GitBlobRef
impl UnwindSafe for GitBlobRef
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