pub struct CT_TextField {
pub id: String,
pub field_type: Option<String>,
pub run_properties: Option<CT_TextCharacterProperties>,
pub paragraph_properties: Option<CT_TextParagraphProperties>,
pub text: Option<TextValue>,
/* private fields */
}Expand description
A DrawingML field with required GUID, optional type, properties, and text.
Fields§
§id: String§field_type: Option<String>§run_properties: Option<CT_TextCharacterProperties>§paragraph_properties: Option<CT_TextParagraphProperties>§text: Option<TextValue>Implementations§
Trait Implementations§
Source§impl Clone for CT_TextField
impl Clone for CT_TextField
Source§fn clone(&self) -> CT_TextField
fn clone(&self) -> CT_TextField
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CT_TextField
impl Debug for CT_TextField
impl Eq for CT_TextField
Source§impl PartialEq for CT_TextField
impl PartialEq for CT_TextField
impl StructuralPartialEq for CT_TextField
Auto Trait Implementations§
impl Freeze for CT_TextField
impl RefUnwindSafe for CT_TextField
impl Send for CT_TextField
impl Sync for CT_TextField
impl Unpin for CT_TextField
impl UnsafeUnpin for CT_TextField
impl UnwindSafe for CT_TextField
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