pub struct BaseGistFilesValue {
pub filename: Option<String>,
pub type: Option<String>,
pub language: Option<String>,
pub raw_url: Option<String>,
pub size: Option<i32>,
}
Fields§
§filename: Option<String>
§type: Option<String>
§language: Option<String>
§raw_url: Option<String>
§size: Option<i32>
Implementations§
Source§impl BaseGistFilesValue
impl BaseGistFilesValue
pub fn new() -> BaseGistFilesValue
Trait Implementations§
Source§impl Clone for BaseGistFilesValue
impl Clone for BaseGistFilesValue
Source§fn clone(&self) -> BaseGistFilesValue
fn clone(&self) -> BaseGistFilesValue
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 BaseGistFilesValue
impl Debug for BaseGistFilesValue
Source§impl Default for BaseGistFilesValue
impl Default for BaseGistFilesValue
Source§fn default() -> BaseGistFilesValue
fn default() -> BaseGistFilesValue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BaseGistFilesValue
impl<'de> Deserialize<'de> for BaseGistFilesValue
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 BaseGistFilesValue
impl PartialEq for BaseGistFilesValue
Source§impl Serialize for BaseGistFilesValue
impl Serialize for BaseGistFilesValue
impl StructuralPartialEq for BaseGistFilesValue
Auto Trait Implementations§
impl Freeze for BaseGistFilesValue
impl RefUnwindSafe for BaseGistFilesValue
impl Send for BaseGistFilesValue
impl Sync for BaseGistFilesValue
impl Unpin for BaseGistFilesValue
impl UnwindSafe for BaseGistFilesValue
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