pub struct ContentBoxProps {
pub clipping: bool,
pub content_reposition: ContentBoxContentReposition,
pub transform: Transform,
}Expand description
The properties of a content_box component
Fields§
§clipping: boolWhether or not to clip the parts of items that overflow outside of the box bounds
content_reposition: ContentBoxContentRepositionThe content repositioning strategy to use.
transform: TransformThe transform to apply to the box and it’s contents
Trait Implementations§
Source§impl Clone for ContentBoxProps
impl Clone for ContentBoxProps
Source§fn clone(&self) -> ContentBoxProps
fn clone(&self) -> ContentBoxProps
Returns a duplicate 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 ContentBoxProps
impl Debug for ContentBoxProps
Source§impl Default for ContentBoxProps
impl Default for ContentBoxProps
Source§fn default() -> ContentBoxProps
fn default() -> ContentBoxProps
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContentBoxProps
impl<'de> Deserialize<'de> for ContentBoxProps
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 Prefab for ContentBoxProps
impl Prefab for ContentBoxProps
fn from_prefab(data: PrefabValue) -> Result<Self, PrefabError>
fn to_prefab(&self) -> Result<PrefabValue, PrefabError>
Source§impl PropsData for ContentBoxPropswhere
Self: Clone,
impl PropsData for ContentBoxPropswhere
Self: Clone,
Auto Trait Implementations§
impl Freeze for ContentBoxProps
impl RefUnwindSafe for ContentBoxProps
impl Send for ContentBoxProps
impl Sync for ContentBoxProps
impl Unpin for ContentBoxProps
impl UnwindSafe for ContentBoxProps
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