pub struct FrameConfig {
pub width: Option<f64>,
pub height: Option<f64>,
pub max_width: Option<FrameDimension>,
pub max_height: Option<FrameDimension>,
}Expand description
Explicit width / height / max-size constraints for an element.
Fields§
§width: Option<f64>Fixed width in points.
height: Option<f64>Fixed height in points.
max_width: Option<FrameDimension>Maximum width — a fixed point value or "infinity".
max_height: Option<FrameDimension>Maximum height — a fixed point value or "infinity".
Trait Implementations§
Source§impl Clone for FrameConfig
impl Clone for FrameConfig
Source§fn clone(&self) -> FrameConfig
fn clone(&self) -> FrameConfig
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 FrameConfig
impl Debug for FrameConfig
Source§impl<'de> Deserialize<'de> for FrameConfig
impl<'de> Deserialize<'de> for FrameConfig
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 JsonSchema for FrameConfig
impl JsonSchema for FrameConfig
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for FrameConfig
impl RefUnwindSafe for FrameConfig
impl Send for FrameConfig
impl Sync for FrameConfig
impl Unpin for FrameConfig
impl UnsafeUnpin for FrameConfig
impl UnwindSafe for FrameConfig
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