pub struct UpdateRepoBody {
pub description: Option<String>,
pub name: Option<String>,
pub readme: Option<String>,
}Expand description
UpdateRepoBody
JSON schema
{
"type": "object",
"properties": {
"description": {
"type": [
"string",
"null"
]
},
"name": {
"type": [
"string",
"null"
]
},
"readme": {
"type": [
"string",
"null"
]
}
}
}Fields§
§description: Option<String>§name: Option<String>§readme: Option<String>Trait Implementations§
Source§impl Clone for UpdateRepoBody
impl Clone for UpdateRepoBody
Source§fn clone(&self) -> UpdateRepoBody
fn clone(&self) -> UpdateRepoBody
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 UpdateRepoBody
impl Debug for UpdateRepoBody
Source§impl Default for UpdateRepoBody
impl Default for UpdateRepoBody
Source§impl<'de> Deserialize<'de> for UpdateRepoBody
impl<'de> Deserialize<'de> for UpdateRepoBody
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 UpdateRepoBody
impl RefUnwindSafe for UpdateRepoBody
impl Send for UpdateRepoBody
impl Sync for UpdateRepoBody
impl Unpin for UpdateRepoBody
impl UnsafeUnpin for UpdateRepoBody
impl UnwindSafe for UpdateRepoBody
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