pub struct TreeItem {
pub content: Option<String>,
pub mode: Option<String>,
pub path: Option<String>,
pub sha: Option<String>,
pub type: Option<String>,
}Fields§
§content: Option<String>§mode: Option<String>§path: Option<String>§sha: Option<String>§type: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for TreeItem
impl<'de> Deserialize<'de> for TreeItem
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 TreeItem
impl RefUnwindSafe for TreeItem
impl Send for TreeItem
impl Sync for TreeItem
impl Unpin for TreeItem
impl UnsafeUnpin for TreeItem
impl UnwindSafe for TreeItem
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