pub struct UpdateCallDto {
pub name: Option<String>,
}
Fields§
§name: Option<String>
This is the name of the call. This is just for your own reference.
Implementations§
Source§impl UpdateCallDto
impl UpdateCallDto
pub fn new() -> UpdateCallDto
Trait Implementations§
Source§impl Clone for UpdateCallDto
impl Clone for UpdateCallDto
Source§fn clone(&self) -> UpdateCallDto
fn clone(&self) -> UpdateCallDto
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateCallDto
impl Debug for UpdateCallDto
Source§impl Default for UpdateCallDto
impl Default for UpdateCallDto
Source§fn default() -> UpdateCallDto
fn default() -> UpdateCallDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateCallDto
impl<'de> Deserialize<'de> for UpdateCallDto
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 UpdateCallDto
impl PartialEq for UpdateCallDto
Source§impl Serialize for UpdateCallDto
impl Serialize for UpdateCallDto
impl StructuralPartialEq for UpdateCallDto
Auto Trait Implementations§
impl Freeze for UpdateCallDto
impl RefUnwindSafe for UpdateCallDto
impl Send for UpdateCallDto
impl Sync for UpdateCallDto
impl Unpin for UpdateCallDto
impl UnwindSafe for UpdateCallDto
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