fractal::session::model::room::event::imp

Struct Event

source
pub struct Event {
Show 19 fields pub item: RefCell<Option<EventTimelineItem>>, pub room: OnceCell<Room>, pub reactions: ReactionList, pub read_receipts: ListStore, pub state: Cell<MessageState>, pub source: PhantomData<Option<String>>, pub has_source: PhantomData<bool>, pub event_id_string: PhantomData<Option<String>>, pub timeline_id: RefCell<Option<String>>, pub sender_id_string: PhantomData<String>, pub timestamp: PhantomData<DateTime>, pub timestamp_full: PhantomData<String>, pub is_edited: PhantomData<bool>, pub latest_edit_source: PhantomData<String>, pub latest_edit_event_id_string: PhantomData<String>, pub latest_edit_timestamp: PhantomData<Option<DateTime>>, pub latest_edit_timestamp_full: PhantomData<String>, pub is_highlighted: PhantomData<bool>, pub has_read_receipts: PhantomData<bool>,
}

Fields§

§item: RefCell<Option<EventTimelineItem>>

The underlying SDK timeline item.

§room: OnceCell<Room>

The room containing this Event.

§reactions: ReactionList

The reactions on this event.

§read_receipts: ListStore

The read receipts on this event.

§state: Cell<MessageState>

The state of this event.

§source: PhantomData<Option<String>>

The pretty-formatted JSON source for this Event, if it has been echoed back by the server.

§has_source: PhantomData<bool>

Whether we have the JSON source of this event.

§event_id_string: PhantomData<Option<String>>

The event ID of this Event, if it has been received from the server, as a string.

§timeline_id: RefCell<Option<String>>

The ID of this Event in the SDK timeline.

§sender_id_string: PhantomData<String>

The ID of the sender of this Event, as a string.

§timestamp: PhantomData<DateTime>

The timestamp of this Event.

§timestamp_full: PhantomData<String>

The full formatted timestamp of this Event.

§is_edited: PhantomData<bool>

Whether this Event was edited.

§latest_edit_source: PhantomData<String>

The pretty-formatted JSON source for the latest edit of this Event, if any.

§latest_edit_event_id_string: PhantomData<String>

The ID for the latest edit of this Event.

§latest_edit_timestamp: PhantomData<Option<DateTime>>

The timestamp for the latest edit of this Event, if any.

§latest_edit_timestamp_full: PhantomData<String>

The full formatted timestamp for the latest edit of this Event.

§is_highlighted: PhantomData<bool>

Whether this Event should be highlighted.

§has_read_receipts: PhantomData<bool>

Whether this event has any read receipt.

Implementations§

source§

impl Event

source

fn register_type()

Registers the type only once.

source§

impl Event

source

pub fn downgrade(&self) -> <Self as Downgrade>::Weak

source§

impl Event

source

pub fn set_item(&self, item: EventTimelineItem, timeline_id: &str)

Set the underlying SDK timeline item of this Event.

source

pub fn raw(&self) -> Option<Raw<AnySyncTimelineEvent>>

The raw JSON source for this Event, if it has been echoed back by the server.

source

fn source(&self) -> Option<String>

The pretty-formatted JSON source for this Event, if it has been echoed back by the server.

source

fn has_source(&self) -> bool

Whether we have the JSON source of this event.

source

fn event_id_string(&self) -> Option<String>

The event ID of this Event, if it has been received from the server, as a string.

source

fn timeline_id(&self) -> String

The ID of this Event in the SDK timeline.

source

fn sender_id_string(&self) -> String

The ID of the sender of this Event, as a string.

source

fn set_room(&self, room: Room)

Set the room that contains this Event.

source

fn timestamp(&self) -> DateTime

The timestamp of this Event.

source

fn timestamp_full(&self) -> String

The full formatted timestamp of this Event.

source

fn is_edited(&self) -> bool

Whether this Event was edited.

source

fn latest_edit_raw(&self) -> Option<Raw<AnySyncTimelineEvent>>

The JSON source for the latest edit of this Event, if any.

source

fn latest_edit_source(&self) -> String

The pretty-formatted JSON source for the latest edit of this Event.

source

fn latest_edit_event_id_string(&self) -> String

The ID of the latest edit of this Event.

source

fn latest_edit_timestamp(&self) -> Option<DateTime>

The timestamp of the latest edit of this Event, if any.

source

fn latest_edit_timestamp_full(&self) -> String

The full formatted timestamp of the latest edit of this Event.

source

fn is_highlighted(&self) -> bool

Whether this Event should be highlighted.

source

fn has_read_receipts(&self) -> bool

Whether this event has any read receipt.

Trait Implementations§

source§

impl Debug for Event

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Event

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl DerivedObjectProperties for Event

source§

fn derived_properties() -> &'static [ParamSpec]

Properties installed for this type.
source§

fn derived_property(&self, id: usize, pspec: &ParamSpec) -> Value

Similar to ObjectImpl but auto-generated by the Properties macro to allow handling more complex use-cases.
source§

fn derived_set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)

Similar to ObjectImpl but auto-generated by the Properties macro to allow handling more complex use-cases.
source§

impl ObjectImpl for Event

source§

fn signals() -> &'static [Signal]

Signals installed for this type.
source§

fn properties() -> &'static [ParamSpec]

Properties installed for this type.
source§

fn set_property(&self, id: usize, value: &Value, pspec: &ParamSpec)

Property setter. Read more
source§

fn property(&self, id: usize, pspec: &ParamSpec) -> Value

Property getter. Read more
source§

fn constructed(&self)

Constructed. Read more
source§

fn dispose(&self)

Disposes of the object. Read more
source§

fn notify(&self, pspec: &ParamSpec)

Function to be called when property change is notified for with self.notify("property").
source§

fn dispatch_properties_changed(&self, pspecs: &[ParamSpec])

source§

impl ObjectSubclass for Event

source§

const NAME: &'static str = "RoomEvent"

GObject type name. Read more
source§

type Interfaces = ()

List of interfaces implemented by this type.
source§

type Class = ClassStruct<Event>

The C class struct. Read more
source§

type Instance = InstanceStruct<Event>

The C instance struct. Read more
source§

type Type = Event

Wrapper around this subclass defined with wrapper!
source§

type ParentType = TimelineItem

Parent Rust type to inherit from.
source§

fn new() -> Self

Constructor. Read more
source§

const ABSTRACT: bool = false

If this subclass is an abstract class or not. Read more
source§

const ALLOW_NAME_CONFLICT: bool = false

Allow name conflicts for this class. Read more
source§

fn type_init(_type_: &mut InitializingType<Self>)

Additional type initialization. Read more
source§

fn class_init(_klass: &mut Self::Class)

Class initialization. Read more
source§

fn with_class(_klass: &Self::Class) -> Self

Constructor. Read more
source§

fn instance_init(_obj: &InitializingObject<Self>)

Performs additional instance initialization. Read more
source§

impl ObjectSubclassType for Event

source§

fn type_data() -> NonNull<TypeData>

Storage for the type-specific data used during registration.
source§

fn type_() -> Type

Returns the glib::Type ID of the subclass. Read more
source§

impl TimelineItemImpl for Event

Auto Trait Implementations§

§

impl !Freeze for Event

§

impl !RefUnwindSafe for Event

§

impl !Send for Event

§

impl !Sync for Event

§

impl Unpin for Event

§

impl !UnwindSafe for Event

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

source§

const WITNESS: W = W::MAKE

A constant of the type witness
source§

impl<T> Identity for T
where T: ?Sized,

source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> NoneValue for T
where T: Default,

source§

type NoneType = T

source§

fn null_value() -> T

The none-equivalent value.
source§

impl<T> ObjectImplExt for T
where T: ObjectImpl,

source§

fn parent_constructed(&self)

Chain up to the parent class’ implementation of glib::Object::constructed().
source§

fn parent_notify(&self, pspec: &ParamSpec)

Chain up to the parent class’ implementation of glib::Object::notify().
source§

fn parent_dispatch_properties_changed(&self, pspecs: &[ParamSpec])

Chain up to the parent class’ implementation of glib::Object::dispatch_properties_changed().
source§

fn signal_chain_from_overridden( &self, token: &SignalClassHandlerToken, values: &[Value], ) -> Option<Value>

Chain up to parent class signal handler.
source§

impl<T> ObjectSubclassExt for T
where T: ObjectSubclass,

source§

fn instance(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>

👎Deprecated: Use obj() instead
Returns the corresponding object instance.
source§

fn from_instance(obj: &<T as ObjectSubclass>::Type) -> &T

👎Deprecated: Use from_obj() instead
Returns the implementation from an instance.
source§

fn obj(&self) -> BorrowedObject<'_, <T as ObjectSubclass>::Type>

Returns the corresponding object instance. Read more
source§

fn from_obj(obj: &<T as ObjectSubclass>::Type) -> &T

Returns the implementation from an instance. Read more
source§

fn ref_counted(&self) -> ObjectImplRef<T>

Returns a new reference-counted wrapper around self.
source§

fn instance_data<U>(&self, type_: Type) -> Option<&U>
where U: Any + Send + Sync + 'static,

Returns a pointer to the instance implementation specific data. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
source§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> Any for T
where T: Any,

source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,