pub struct Property { /* private fields */ }Expand description
Native representation of a Property
Contains historical data pertaining to a particular data field of a tracked object.
Implementations
sourceimpl Property
impl Property
pub fn name(&self) -> &str
pub fn record_id(&self) -> &str
pub fn property_definition(&self) -> &PropertyDefinition
pub fn reporters(&self) -> &[Reporter]
pub fn current_page(&self) -> &u32
pub fn wrapped(&self) -> &bool
pub fn into_builder(self) -> PropertyBuilder
Trait Implementations
sourceimpl FromBytes<Property> for Property
impl FromBytes<Property> for Property
fn from_bytes(bytes: &[u8]) -> Result<Property, ProtoConversionError>
sourceimpl FromNative<Property> for Property
impl FromNative<Property> for Property
fn from_native(native: Property) -> Result<Self, ProtoConversionError>
sourceimpl FromProto<Property> for Property
impl FromProto<Property> for Property
fn from_proto(proto: Property) -> Result<Self, ProtoConversionError>
sourceimpl IntoBytes for Property
impl IntoBytes for Property
fn into_bytes(self) -> Result<Vec<u8>, ProtoConversionError>
sourceimpl IntoNative<Property> for Property
impl IntoNative<Property> for Property
fn into_native(self) -> Result<T, ProtoConversionError>
sourceimpl IntoProto<Property> for Property
impl IntoProto<Property> for Property
fn into_proto(self) -> Result<T, ProtoConversionError>
impl StructuralPartialEq for Property
Auto Trait Implementations
impl RefUnwindSafe for Property
impl Send for Property
impl Sync for Property
impl Unpin for Property
impl UnwindSafe for Property
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more