pub struct ListWrapperServiceDataInner {
pub service_id: Uuid,
pub tenant_id: Uuid,
pub name: String,
pub expenditure_minutes: i32,
pub default_tags: Vec<Uuid>,
pub questions: Vec<ExtraQuestion>,
pub color: Option<Option<String>>,
pub last_change: String,
}Fields§
§service_id: UuidID of the service
tenant_id: Uuidtenant this service is assocciated with
name: Stringname of the offered service
expenditure_minutes: i32how many minutes have to be reserved for this service
which tags should get added automatically to a reservation generated for this service
questions: Vec<ExtraQuestion>which questions should be asked to the patient if he selects this service
color: Option<Option<String>>which color shall be used to show reservations for this service in the calendar
last_change: Stringwhen has this service be updated for the last time
Implementations§
Trait Implementations§
Source§impl Clone for ListWrapperServiceDataInner
impl Clone for ListWrapperServiceDataInner
Source§fn clone(&self) -> ListWrapperServiceDataInner
fn clone(&self) -> ListWrapperServiceDataInner
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 ListWrapperServiceDataInner
impl Debug for ListWrapperServiceDataInner
Source§impl Default for ListWrapperServiceDataInner
impl Default for ListWrapperServiceDataInner
Source§fn default() -> ListWrapperServiceDataInner
fn default() -> ListWrapperServiceDataInner
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListWrapperServiceDataInner
impl<'de> Deserialize<'de> for ListWrapperServiceDataInner
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
impl StructuralPartialEq for ListWrapperServiceDataInner
Auto Trait Implementations§
impl Freeze for ListWrapperServiceDataInner
impl RefUnwindSafe for ListWrapperServiceDataInner
impl Send for ListWrapperServiceDataInner
impl Sync for ListWrapperServiceDataInner
impl Unpin for ListWrapperServiceDataInner
impl UnwindSafe for ListWrapperServiceDataInner
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