pub struct GistFile {
pub content: Option<String>,
pub raw_url: Option<String>,
pub size: Option<i64>,
pub truncated: Option<bool>,
}Fields§
§content: Option<String>§raw_url: Option<String>§size: Option<i64>§truncated: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GistFile
impl<'de> Deserialize<'de> for GistFile
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 GistFile
impl RefUnwindSafe for GistFile
impl Send for GistFile
impl Sync for GistFile
impl Unpin for GistFile
impl UnsafeUnpin for GistFile
impl UnwindSafe for GistFile
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