pub struct FormatPart { /* private fields */ }
Expand description

One structural part of a value format.

Implementations§

source§

impl FormatPart

source

pub fn new(ftype: FormatPartType) -> Self

New, empty

source

pub fn set_part_type(&mut self, p_type: FormatPartType)

Sets the kind of the part.

source

pub fn part_type(&self) -> FormatPartType

What kind of part?

source

pub fn set_attr(&mut self, name: &str, value: String)

Adds an attribute.

source

pub fn attr_def<'a, 'b, S>(&'a self, name: &'b str, default: S) -> &'a str
where S: Into<&'a str>,

Returns a property or a default.

source

pub fn set_position(&mut self, pos: i32)

Sets the position for embedded text in a number format part.

source

pub fn clear_position(&mut self)

Clear the position for embedded text in a number format part.

source

pub fn position(&self) -> Option<i32>

The position for embedded text in a number format part.

source

pub fn set_content<S: Into<String>>(&mut self, content: S)

Sets a textual content for this part. This is only used for text and currency-symbol.

source

pub fn clear_content(&mut self)

Clear the textual content for this part. This is only used for text and currency-symbol.

source

pub fn content(&self) -> Option<&String>

Returns the text content.

Trait Implementations§

source§

impl Clone for FormatPart

source§

fn clone(&self) -> FormatPart

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 Debug for FormatPart

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

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.