pub struct CreateForkParams {
pub description: Option<String>,
pub name: Option<String>,
pub organization: Option<String>,
}Fields§
§description: Option<String>Описание
name: Option<String>Имя форкнутого репозитория
organization: Option<String>Название организации, если форкаем в организацию
Trait Implementations§
Source§impl Clone for CreateForkParams
impl Clone for CreateForkParams
Source§fn clone(&self) -> CreateForkParams
fn clone(&self) -> CreateForkParams
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 CreateForkParams
impl Debug for CreateForkParams
Source§impl<'de> Deserialize<'de> for CreateForkParams
impl<'de> Deserialize<'de> for CreateForkParams
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 CreateForkParams
impl RefUnwindSafe for CreateForkParams
impl Send for CreateForkParams
impl Sync for CreateForkParams
impl Unpin for CreateForkParams
impl UnsafeUnpin for CreateForkParams
impl UnwindSafe for CreateForkParams
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