pub struct DependencyRequest {
pub id: GlobalId,
pub direction: Direction,
pub paging: Paging,
}Expand description
A request for a page of one item’s dependency edges.
Fields§
§id: GlobalIdThe qualified item to walk from.
direction: DirectionWhich way to walk.
paging: PagingWhich page.
Trait Implementations§
Source§impl Clone for DependencyRequest
impl Clone for DependencyRequest
Source§fn clone(&self) -> DependencyRequest
fn clone(&self) -> DependencyRequest
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 moreAuto Trait Implementations§
impl Freeze for DependencyRequest
impl RefUnwindSafe for DependencyRequest
impl Send for DependencyRequest
impl Sync for DependencyRequest
impl Unpin for DependencyRequest
impl UnsafeUnpin for DependencyRequest
impl UnwindSafe for DependencyRequest
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