pub struct PartialFunction<B, O> { /* private fields */ }
Expand description
Define a functions defined by multiple functions parts. See BoundedFunction. Uses bounds as [lower,higher], except in the case of a lower bound overlapping a higher bound. In this case, the lower bound always take precedence.
Implementations§
Source§impl<B: PartialOrd, O> PartialFunction<B, O>
impl<B: PartialOrd, O> PartialFunction<B, O>
Auto Trait Implementations§
impl<B, O> Freeze for PartialFunction<B, O>
impl<B, O> !RefUnwindSafe for PartialFunction<B, O>
impl<B, O> !Send for PartialFunction<B, O>
impl<B, O> !Sync for PartialFunction<B, O>
impl<B, O> Unpin for PartialFunction<B, O>where
B: Unpin,
impl<B, O> !UnwindSafe for PartialFunction<B, O>
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