pub struct CreateGist<'a> {
pub description: &'a str,
pub public: bool,
pub files: &'a [(String, String)],
}Fields§
§description: &'a str§public: bool§files: &'a [(String, String)]Auto Trait Implementations§
impl<'a> Freeze for CreateGist<'a>
impl<'a> RefUnwindSafe for CreateGist<'a>
impl<'a> Send for CreateGist<'a>
impl<'a> Sync for CreateGist<'a>
impl<'a> Unpin for CreateGist<'a>
impl<'a> UnsafeUnpin for CreateGist<'a>
impl<'a> UnwindSafe for CreateGist<'a>
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