pub struct ResizableResponse {
pub response: Response,
pub sizes: Vec<f32>,
pub changed: bool,
}Expand description
Response from a resizable panel group.
Fields§
§response: ResponseThe UI response.
sizes: Vec<f32>Current panel sizes as fractions.
changed: boolWhether any handle was dragged this frame.
Auto Trait Implementations§
impl Freeze for ResizableResponse
impl !RefUnwindSafe for ResizableResponse
impl Send for ResizableResponse
impl Sync for ResizableResponse
impl Unpin for ResizableResponse
impl UnsafeUnpin for ResizableResponse
impl !UnwindSafe for ResizableResponse
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