pub struct FullDecayingModel {Show 14 fields
pub id: Option<String>,
pub uuid: Option<Uuid>,
pub name: Option<String>,
pub description: Option<String>,
pub parameters: Option<Box<DecayingModelParameters>>,
pub attribute_types: Option<Vec<AttributeType>>,
pub org_id: Option<String>,
pub enabled: Option<bool>,
pub all_orgs: Option<bool>,
pub ref: Option<Vec<String>>,
pub formula: Option<Formula>,
pub version: Option<String>,
pub default: Option<bool>,
pub is_editable: Option<bool>,
}
Expand description
FullDecayingModel : Present if the includeFullModel
flag was set to true in the rest search request
Fields§
§id: Option<String>
§uuid: Option<Uuid>
§name: Option<String>
§description: Option<String>
§parameters: Option<Box<DecayingModelParameters>>
§attribute_types: Option<Vec<AttributeType>>
§org_id: Option<String>
§enabled: Option<bool>
§all_orgs: Option<bool>
§ref: Option<Vec<String>>
§formula: Option<Formula>
§version: Option<String>
§default: Option<bool>
§is_editable: Option<bool>
Implementations§
Source§impl FullDecayingModel
impl FullDecayingModel
Sourcepub fn new() -> FullDecayingModel
pub fn new() -> FullDecayingModel
Present if the includeFullModel
flag was set to true in the rest search request
Trait Implementations§
Source§impl Clone for FullDecayingModel
impl Clone for FullDecayingModel
Source§fn clone(&self) -> FullDecayingModel
fn clone(&self) -> FullDecayingModel
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 FullDecayingModel
impl Debug for FullDecayingModel
Source§impl Default for FullDecayingModel
impl Default for FullDecayingModel
Source§fn default() -> FullDecayingModel
fn default() -> FullDecayingModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FullDecayingModel
impl<'de> Deserialize<'de> for FullDecayingModel
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 FullDecayingModel
impl PartialEq for FullDecayingModel
Source§impl Serialize for FullDecayingModel
impl Serialize for FullDecayingModel
impl StructuralPartialEq for FullDecayingModel
Auto Trait Implementations§
impl Freeze for FullDecayingModel
impl RefUnwindSafe for FullDecayingModel
impl Send for FullDecayingModel
impl Sync for FullDecayingModel
impl Unpin for FullDecayingModel
impl UnwindSafe for FullDecayingModel
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