pub struct RawMargin {
pub left: i32,
pub right: i32,
pub top: i32,
pub bottom: i32,
}Available on crate feature
zbus-backend only.Expand description
Print margins in hundredths of a millimetre. D-Bus signature: (iiii).
Fields§
§left: i32Left margin in hundredths of a mm.
right: i32Right margin in hundredths of a mm.
top: i32Top margin in hundredths of a mm.
bottom: i32Bottom margin in hundredths of a mm.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RawMargin
impl<'de> Deserialize<'de> for RawMargin
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
Auto Trait Implementations§
impl Freeze for RawMargin
impl RefUnwindSafe for RawMargin
impl Send for RawMargin
impl Sync for RawMargin
impl Unpin for RawMargin
impl UnsafeUnpin for RawMargin
impl UnwindSafe for RawMargin
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
impl<'de, T> DynamicDeserialize<'de> for Twhere
T: Type + Deserialize<'de>,
Source§type Deserializer = PhantomData<T>
type Deserializer = PhantomData<T>
A DeserializeSeed implementation for this type.
Source§fn deserializer_for_signature(
signature: &Signature,
) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
fn deserializer_for_signature( signature: &Signature, ) -> Result<<T as DynamicDeserialize<'de>>::Deserializer, Error>
Get a deserializer compatible with this parsed signature.