Struct yrs::types::xml::XmlElementPrelim

source ·
pub struct XmlElementPrelim<I, T>(/* private fields */)
where
    I: IntoIterator<Item = T>,
    T: XmlPrelim;
Expand description

A preliminary type that will be materialized into an XmlElementRef once it will be integrated into Yrs document.

Implementations§

source§

impl<I, T> XmlElementPrelim<I, T>
where I: IntoIterator<Item = T>, T: XmlPrelim,

source

pub fn new<S: Into<Arc<str>>>(tag: S, iter: I) -> Self

source§

impl XmlElementPrelim<Option<XmlTextPrelim<String>>, XmlTextPrelim<String>>

source

pub fn empty<S: Into<Arc<str>>>(tag: S) -> Self

Trait Implementations§

source§

impl<I, T> Clone for XmlElementPrelim<I, T>
where I: IntoIterator<Item = T> + Clone, T: XmlPrelim + Clone,

source§

fn clone(&self) -> XmlElementPrelim<I, T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<I, T> Debug for XmlElementPrelim<I, T>
where I: IntoIterator<Item = T> + Debug, T: XmlPrelim + Debug,

source§

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

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

impl<I, T> Into<EmbedPrelim<XmlElementPrelim<I, T>>> for XmlElementPrelim<I, T>
where I: IntoIterator<Item = T>, T: XmlPrelim + Prelim,

source§

fn into(self) -> EmbedPrelim<XmlElementPrelim<I, T>>

Converts this type into the (usually inferred) input type.
source§

impl<I, T> Prelim for XmlElementPrelim<I, T>
where I: IntoIterator<Item = T>, T: XmlPrelim,

§

type Return = XmlElementRef

Type of a value to be returned as a result of inserting this Prelim type instance. Use Unused if none is necessary.
source§

fn into_content( self, _txn: &mut TransactionMut<'_> ) -> (ItemContent, Option<Self>)

This method is used to create initial content required in order to create a block item. A supplied ptr can be used to identify block that is about to be created to store the returned content. Read more
source§

fn integrate(self, txn: &mut TransactionMut<'_>, inner_ref: BranchPtr)

Method called once an original item filled with content from Self::into_content has been added to block store. This method is used by complex types such as maps or arrays to append the original contents of prelim struct into YMap, YArray etc.
source§

impl<I, T> XmlPrelim for XmlElementPrelim<I, T>
where I: IntoIterator<Item = T>, T: XmlPrelim,

Auto Trait Implementations§

§

impl<I, T> Freeze for XmlElementPrelim<I, T>
where I: Freeze,

§

impl<I, T> RefUnwindSafe for XmlElementPrelim<I, T>
where I: RefUnwindSafe,

§

impl<I, T> Send for XmlElementPrelim<I, T>
where I: Send,

§

impl<I, T> Sync for XmlElementPrelim<I, T>
where I: Sync,

§

impl<I, T> Unpin for XmlElementPrelim<I, T>
where I: Unpin,

§

impl<I, T> UnwindSafe for XmlElementPrelim<I, T>
where I: UnwindSafe,

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, 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.