pub struct ServiceMetadata {
pub service_id: String,
pub service_name: String,
pub tenant_id: String,
pub created_at: DateTime<Utc>,
pub file_path: Option<String>,
}Expand description
Service metadata
Fields§
§service_id: String§service_name: String§tenant_id: String§created_at: DateTime<Utc>§file_path: Option<String>Trait Implementations§
Source§impl Clone for ServiceMetadata
impl Clone for ServiceMetadata
Source§fn clone(&self) -> ServiceMetadata
fn clone(&self) -> ServiceMetadata
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 ServiceMetadata
impl Debug for ServiceMetadata
Source§impl<'de> Deserialize<'de> for ServiceMetadata
impl<'de> Deserialize<'de> for ServiceMetadata
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 ServiceMetadata
impl RefUnwindSafe for ServiceMetadata
impl Send for ServiceMetadata
impl Sync for ServiceMetadata
impl Unpin for ServiceMetadata
impl UnsafeUnpin for ServiceMetadata
impl UnwindSafe for ServiceMetadata
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