pub struct TypeInformation(/* private fields */);Expand description
Type information retrieved when doing filter or retrieve requests and setting
include_typing to true.
Map from space to view/container to property.
Implementations§
Source§impl TypeInformation
impl TypeInformation
Sourcepub fn get_property_info(
&self,
space: &str,
view_or_container: &str,
property: &str,
) -> Option<&TypePropertyDefinition>
pub fn get_property_info( &self, space: &str, view_or_container: &str, property: &str, ) -> Option<&TypePropertyDefinition>
Get information about a property by space, view/container external ID, and property name, if it is present in the type information.
Trait Implementations§
Source§impl Clone for TypeInformation
impl Clone for TypeInformation
Source§fn clone(&self) -> TypeInformation
fn clone(&self) -> TypeInformation
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 TypeInformation
impl Debug for TypeInformation
Source§impl<'de> Deserialize<'de> for TypeInformation
impl<'de> Deserialize<'de> for TypeInformation
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 TypeInformation
impl RefUnwindSafe for TypeInformation
impl Send for TypeInformation
impl Sync for TypeInformation
impl Unpin for TypeInformation
impl UnwindSafe for TypeInformation
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