pub struct JqlQueryFieldEntityProperty {
pub entity: String,
pub key: String,
pub path: String,
pub type: Option<Type>,
}
Expand description
JqlQueryFieldEntityProperty : Details of an entity property.
Fields§
§entity: String
The object on which the property is set.
key: String
The key of the property.
path: String
The path in the property value to query.
type: Option<Type>
The type of the property value extraction. Not available if the extraction for the property is not registered on the instance with the Entity property module.
Implementations§
Trait Implementations§
Source§impl Clone for JqlQueryFieldEntityProperty
impl Clone for JqlQueryFieldEntityProperty
Source§fn clone(&self) -> JqlQueryFieldEntityProperty
fn clone(&self) -> JqlQueryFieldEntityProperty
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 JqlQueryFieldEntityProperty
impl Debug for JqlQueryFieldEntityProperty
Source§impl Default for JqlQueryFieldEntityProperty
impl Default for JqlQueryFieldEntityProperty
Source§fn default() -> JqlQueryFieldEntityProperty
fn default() -> JqlQueryFieldEntityProperty
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JqlQueryFieldEntityProperty
impl<'de> Deserialize<'de> for JqlQueryFieldEntityProperty
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 JqlQueryFieldEntityProperty
Auto Trait Implementations§
impl Freeze for JqlQueryFieldEntityProperty
impl RefUnwindSafe for JqlQueryFieldEntityProperty
impl Send for JqlQueryFieldEntityProperty
impl Sync for JqlQueryFieldEntityProperty
impl Unpin for JqlQueryFieldEntityProperty
impl UnwindSafe for JqlQueryFieldEntityProperty
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