pub struct UpdateRepositoryNameInput {
pub new_name: String,
pub old_name: String,
}Expand description
Represents the input of an update repository description operation.
Fields§
§new_name: StringThe new name for the repository.
old_name: StringThe current name of the repository.
Trait Implementations§
Source§impl Clone for UpdateRepositoryNameInput
impl Clone for UpdateRepositoryNameInput
Source§fn clone(&self) -> UpdateRepositoryNameInput
fn clone(&self) -> UpdateRepositoryNameInput
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 UpdateRepositoryNameInput
impl Debug for UpdateRepositoryNameInput
Source§impl Default for UpdateRepositoryNameInput
impl Default for UpdateRepositoryNameInput
Source§fn default() -> UpdateRepositoryNameInput
fn default() -> UpdateRepositoryNameInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for UpdateRepositoryNameInput
Auto Trait Implementations§
impl Freeze for UpdateRepositoryNameInput
impl RefUnwindSafe for UpdateRepositoryNameInput
impl Send for UpdateRepositoryNameInput
impl Sync for UpdateRepositoryNameInput
impl Unpin for UpdateRepositoryNameInput
impl UnwindSafe for UpdateRepositoryNameInput
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