pub struct ProvisionReport {
pub created_fields: Vec<String>,
pub created_tags: Vec<String>,
pub created_object_types: Vec<String>,
pub created_object_fields: Vec<String>,
pub deprecated_object_types: Vec<String>,
pub deprecated_object_fields: Vec<String>,
pub deleted_object_types: Vec<String>,
pub deleted_object_fields: Vec<String>,
}Expand description
report from ensure_schema provisioning.
Fields§
§created_fields: Vec<String>custom fields created on the backend.
tags created on the backend.
created_object_types: Vec<String>custom object types created on the backend.
created_object_fields: Vec<String>custom object fields created on the backend.
deprecated_object_types: Vec<String>object types deprecated on the backend.
deprecated_object_fields: Vec<String>object fields deprecated on the backend.
deleted_object_types: Vec<String>object types deleted on the backend.
deleted_object_fields: Vec<String>object fields deleted on the backend.
Trait Implementations§
Source§impl Clone for ProvisionReport
impl Clone for ProvisionReport
Source§fn clone(&self) -> ProvisionReport
fn clone(&self) -> ProvisionReport
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 ProvisionReport
impl Debug for ProvisionReport
Source§impl Default for ProvisionReport
impl Default for ProvisionReport
Source§fn default() -> ProvisionReport
fn default() -> ProvisionReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProvisionReport
impl<'de> Deserialize<'de> for ProvisionReport
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 ProvisionReport
impl RefUnwindSafe for ProvisionReport
impl Send for ProvisionReport
impl Sync for ProvisionReport
impl Unpin for ProvisionReport
impl UnsafeUnpin for ProvisionReport
impl UnwindSafe for ProvisionReport
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