pub struct GitTreeResponse {
pub tree: Vec<GitTreeEntry>,
pub truncated: bool,
}Expand description
Response from GitHub Git Trees API.
Fields§
§tree: Vec<GitTreeEntry>List of entries in the tree.
truncated: boolWhether the tree is truncated (too many entries).
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 (const: unstable) · 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
Auto Trait Implementations§
impl Freeze for GitTreeResponse
impl RefUnwindSafe for GitTreeResponse
impl Send for GitTreeResponse
impl Sync for GitTreeResponse
impl Unpin for GitTreeResponse
impl UnsafeUnpin 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