pub struct CreateRepositoryParams {
pub auto_init: Option<bool>,
pub description: Option<String>,
pub gitignores: Option<Vec<String>>,
pub is_template: Option<bool>,
pub name: Option<String>,
pub private: Option<bool>,
}Fields§
§auto_init: Option<bool>§description: Option<String>§gitignores: Option<Vec<String>>§is_template: Option<bool>§name: Option<String>§private: Option<bool>Trait Implementations§
Source§impl Clone for CreateRepositoryParams
impl Clone for CreateRepositoryParams
Source§fn clone(&self) -> CreateRepositoryParams
fn clone(&self) -> CreateRepositoryParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateRepositoryParams
impl Debug for CreateRepositoryParams
Source§impl<'de> Deserialize<'de> for CreateRepositoryParams
impl<'de> Deserialize<'de> for CreateRepositoryParams
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 CreateRepositoryParams
impl RefUnwindSafe for CreateRepositoryParams
impl Send for CreateRepositoryParams
impl Sync for CreateRepositoryParams
impl Unpin for CreateRepositoryParams
impl UnsafeUnpin for CreateRepositoryParams
impl UnwindSafe for CreateRepositoryParams
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