pub struct CreateListDto {
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
pub style: ListStyle,
pub indent: i64,
pub prefix: String,
pub suffix: String,
}Fields§
§created_at: DateTime<Utc>§updated_at: DateTime<Utc>§style: ListStyle§indent: i64§prefix: String§suffix: StringTrait Implementations§
Source§impl Clone for CreateListDto
impl Clone for CreateListDto
Source§fn clone(&self) -> CreateListDto
fn clone(&self) -> CreateListDto
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 CreateListDto
impl Debug for CreateListDto
Source§impl Default for CreateListDto
impl Default for CreateListDto
Source§fn default() -> CreateListDto
fn default() -> CreateListDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateListDto
impl<'de> Deserialize<'de> for CreateListDto
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 From<&CreateListDto> for List
impl From<&CreateListDto> for List
Source§fn from(dto: &CreateListDto) -> Self
fn from(dto: &CreateListDto) -> Self
Converts to this type from the input type.
Source§impl From<CreateListDto> for List
impl From<CreateListDto> for List
Source§fn from(dto: CreateListDto) -> Self
fn from(dto: CreateListDto) -> Self
Converts to this type from the input type.
Source§impl From<List> for CreateListDto
impl From<List> for CreateListDto
Source§impl PartialEq for CreateListDto
impl PartialEq for CreateListDto
Source§impl Serialize for CreateListDto
impl Serialize for CreateListDto
impl StructuralPartialEq for CreateListDto
Auto Trait Implementations§
impl Freeze for CreateListDto
impl RefUnwindSafe for CreateListDto
impl Send for CreateListDto
impl Sync for CreateListDto
impl Unpin for CreateListDto
impl UnsafeUnpin for CreateListDto
impl UnwindSafe for CreateListDto
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