pub struct RepoImportInput {
pub description: String,
pub identifier: String,
pub is_public: bool,
pub parent_ref: String,
pub provider: Box<RepoProvider>,
pub provider_repo: String,
}Fields§
§description: String§identifier: String§is_public: bool§parent_ref: String§provider: Box<RepoProvider>§provider_repo: StringImplementations§
Source§impl RepoImportInput
impl RepoImportInput
pub fn new( description: String, identifier: String, is_public: bool, parent_ref: String, provider: RepoProvider, provider_repo: String, ) -> RepoImportInput
Trait Implementations§
Source§impl Clone for RepoImportInput
impl Clone for RepoImportInput
Source§fn clone(&self) -> RepoImportInput
fn clone(&self) -> RepoImportInput
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 RepoImportInput
impl Debug for RepoImportInput
Source§impl Default for RepoImportInput
impl Default for RepoImportInput
Source§fn default() -> RepoImportInput
fn default() -> RepoImportInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepoImportInput
impl<'de> Deserialize<'de> for RepoImportInput
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 RepoImportInput
impl PartialEq for RepoImportInput
Source§impl Serialize for RepoImportInput
impl Serialize for RepoImportInput
impl StructuralPartialEq for RepoImportInput
Auto Trait Implementations§
impl Freeze for RepoImportInput
impl RefUnwindSafe for RepoImportInput
impl Send for RepoImportInput
impl Sync for RepoImportInput
impl Unpin for RepoImportInput
impl UnwindSafe for RepoImportInput
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