pub struct PageBlockTitle {
pub text: RichText,
}Expand description
Fields§
§text: RichTextTrait Implementations§
Source§impl Clone for PageBlockTitle
impl Clone for PageBlockTitle
Source§fn clone(&self) -> PageBlockTitle
fn clone(&self) -> PageBlockTitle
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 Debug for PageBlockTitle
impl Debug for PageBlockTitle
Source§impl Deserializable for PageBlockTitle
impl Deserializable for PageBlockTitle
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<PageBlockTitle> for PageBlock
impl From<PageBlockTitle> for PageBlock
Source§fn from(x: PageBlockTitle) -> Self
fn from(x: PageBlockTitle) -> Self
Converts to this type from the input type.
Source§impl Identifiable for PageBlockTitle
impl Identifiable for PageBlockTitle
Source§const CONSTRUCTOR_ID: u32 = 0x70abc3fd
const CONSTRUCTOR_ID: u32 = 0x70abc3fd
The constructor ID as specified in the TL schema.
Source§impl PartialEq for PageBlockTitle
impl PartialEq for PageBlockTitle
Source§impl Serializable for PageBlockTitle
impl Serializable for PageBlockTitle
Source§impl TryFrom<PageBlock> for PageBlockTitle
impl TryFrom<PageBlock> for PageBlockTitle
impl StructuralPartialEq for PageBlockTitle
Auto Trait Implementations§
impl Freeze for PageBlockTitle
impl RefUnwindSafe for PageBlockTitle
impl Send for PageBlockTitle
impl Sync for PageBlockTitle
impl Unpin for PageBlockTitle
impl UnsafeUnpin for PageBlockTitle
impl UnwindSafe for PageBlockTitle
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