pub struct GitTreeResponse {
pub page: Option<i64>,
pub sha: Option<String>,
pub total_count: Option<i64>,
pub tree: Option<Vec<GitEntry>>,
pub truncated: Option<bool>,
pub url: Option<Url>,
}Expand description
GitTreeResponse returns a git tree
Fields§
§page: Option<i64>§sha: Option<String>§total_count: Option<i64>§tree: Option<Vec<GitEntry>>§truncated: Option<bool>§url: Option<Url>Trait Implementations§
Source§impl Clone for GitTreeResponse
impl Clone for GitTreeResponse
Source§fn clone(&self) -> GitTreeResponse
fn clone(&self) -> GitTreeResponse
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 GitTreeResponse
impl Debug for GitTreeResponse
Source§impl<'de> Deserialize<'de> for GitTreeResponse
impl<'de> Deserialize<'de> for GitTreeResponse
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 GitTreeResponse
impl PartialEq for GitTreeResponse
Source§impl Serialize for GitTreeResponse
impl Serialize for GitTreeResponse
impl StructuralPartialEq for GitTreeResponse
Auto Trait Implementations§
impl Freeze for GitTreeResponse
impl RefUnwindSafe for GitTreeResponse
impl Send for GitTreeResponse
impl Sync for GitTreeResponse
impl Unpin for GitTreeResponse
impl UnwindSafe for GitTreeResponse
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