pub struct ScratchPad {
pub name: ScratchPadName,
pub args: Option<Vec<String>>,
pub value: String,
pub x: Option<Size>,
pub y: Option<Size>,
pub height: Option<Size>,
pub width: Option<Size>,
}
Fields§
§name: ScratchPadName
§args: Option<Vec<String>>
§value: String
§x: Option<Size>
§y: Option<Size>
§height: Option<Size>
§width: Option<Size>
Implementations§
Trait Implementations§
Source§impl Clone for ScratchPad
impl Clone for ScratchPad
Source§fn clone(&self) -> ScratchPad
fn clone(&self) -> ScratchPad
Returns a copy 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 ScratchPad
impl Debug for ScratchPad
Source§impl<'de> Deserialize<'de> for ScratchPad
impl<'de> Deserialize<'de> for ScratchPad
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ScratchPad
impl PartialEq for ScratchPad
Source§impl Serialize for ScratchPad
impl Serialize for ScratchPad
impl StructuralPartialEq for ScratchPad
Auto Trait Implementations§
impl Freeze for ScratchPad
impl RefUnwindSafe for ScratchPad
impl Send for ScratchPad
impl Sync for ScratchPad
impl Unpin for ScratchPad
impl UnwindSafe for ScratchPad
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