pub struct PdgText {
pub pdgid: PdgId,
pub text_type: String,
pub text: Option<String>,
pub sort: isize,
}Expand description
Free-form text block attached to a PDG identifier.
Fields§
§pdgid: PdgIdPDG identifier that owns this text block.
text_type: StringPDG text category code.
text: Option<String>Text content, when present in the database.
sort: isizeSort key used by the PDG tables.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PdgText
impl RefUnwindSafe for PdgText
impl Send for PdgText
impl Sync for PdgText
impl Unpin for PdgText
impl UnsafeUnpin for PdgText
impl UnwindSafe for PdgText
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