pub struct TelegramSourcePropertyMapping {
pub pk: Uuid,
pub managed: Option<Option<String>>,
pub name: String,
pub expression: String,
pub component: String,
pub verbose_name: String,
pub verbose_name_plural: String,
pub meta_model_name: String,
}Expand description
TelegramSourcePropertyMapping : TelegramSourcePropertyMapping Serializer
Fields§
§pk: Uuid§managed: Option<Option<String>>Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
name: String§expression: String§component: StringGet object’s component so that we know how to edit the object
verbose_name: StringReturn object’s verbose_name
verbose_name_plural: StringReturn object’s plural verbose_name
meta_model_name: StringReturn internal model name
Implementations§
Trait Implementations§
Source§impl Clone for TelegramSourcePropertyMapping
impl Clone for TelegramSourcePropertyMapping
Source§fn clone(&self) -> TelegramSourcePropertyMapping
fn clone(&self) -> TelegramSourcePropertyMapping
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 Default for TelegramSourcePropertyMapping
impl Default for TelegramSourcePropertyMapping
Source§fn default() -> TelegramSourcePropertyMapping
fn default() -> TelegramSourcePropertyMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TelegramSourcePropertyMapping
impl<'de> Deserialize<'de> for TelegramSourcePropertyMapping
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 TelegramSourcePropertyMapping
impl PartialEq for TelegramSourcePropertyMapping
Source§fn eq(&self, other: &TelegramSourcePropertyMapping) -> bool
fn eq(&self, other: &TelegramSourcePropertyMapping) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TelegramSourcePropertyMapping
Auto Trait Implementations§
impl Freeze for TelegramSourcePropertyMapping
impl RefUnwindSafe for TelegramSourcePropertyMapping
impl Send for TelegramSourcePropertyMapping
impl Sync for TelegramSourcePropertyMapping
impl Unpin for TelegramSourcePropertyMapping
impl UnsafeUnpin for TelegramSourcePropertyMapping
impl UnwindSafe for TelegramSourcePropertyMapping
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