pub struct UpdateRepositoryDescriptionInput {
pub repository_description: Option<String>,
pub repository_name: String,
}Expand description
Represents the input of an update repository description operation.
Fields§
§repository_description: Option<String>The new comment or description for the specified repository. Repository descriptions are limited to 1,000 characters.
repository_name: StringThe name of the repository to set or change the comment or description for.
Trait Implementations§
Source§impl Clone for UpdateRepositoryDescriptionInput
impl Clone for UpdateRepositoryDescriptionInput
Source§fn clone(&self) -> UpdateRepositoryDescriptionInput
fn clone(&self) -> UpdateRepositoryDescriptionInput
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 Default for UpdateRepositoryDescriptionInput
impl Default for UpdateRepositoryDescriptionInput
Source§fn default() -> UpdateRepositoryDescriptionInput
fn default() -> UpdateRepositoryDescriptionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateRepositoryDescriptionInput
impl PartialEq for UpdateRepositoryDescriptionInput
Source§fn eq(&self, other: &UpdateRepositoryDescriptionInput) -> bool
fn eq(&self, other: &UpdateRepositoryDescriptionInput) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UpdateRepositoryDescriptionInput
Auto Trait Implementations§
impl Freeze for UpdateRepositoryDescriptionInput
impl RefUnwindSafe for UpdateRepositoryDescriptionInput
impl Send for UpdateRepositoryDescriptionInput
impl Sync for UpdateRepositoryDescriptionInput
impl Unpin for UpdateRepositoryDescriptionInput
impl UnwindSafe for UpdateRepositoryDescriptionInput
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