pub struct PostGitCreateBlob {
pub content: Option<String>,
pub encoding: Option<String>,
}Fields§
§content: Option<String>The new blob’s content.
encoding: Option<String>The encoding used for content. Currently, \"utf-8\" and \"base64\" are supported.
Trait Implementations§
Source§impl Clone for PostGitCreateBlob
impl Clone for PostGitCreateBlob
Source§fn clone(&self) -> PostGitCreateBlob
fn clone(&self) -> PostGitCreateBlob
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 PostGitCreateBlob
impl Debug for PostGitCreateBlob
Source§impl Default for PostGitCreateBlob
impl Default for PostGitCreateBlob
Source§fn default() -> PostGitCreateBlob
fn default() -> PostGitCreateBlob
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PostGitCreateBlob
impl<'de> Deserialize<'de> for PostGitCreateBlob
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 PostGitCreateBlob
impl PartialEq for PostGitCreateBlob
Source§impl Serialize for PostGitCreateBlob
impl Serialize for PostGitCreateBlob
impl StructuralPartialEq for PostGitCreateBlob
Auto Trait Implementations§
impl Freeze for PostGitCreateBlob
impl RefUnwindSafe for PostGitCreateBlob
impl Send for PostGitCreateBlob
impl Sync for PostGitCreateBlob
impl Unpin for PostGitCreateBlob
impl UnwindSafe for PostGitCreateBlob
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