#[repr(C)]pub struct arc_st {
pub r_cap: c_short,
pub cost: c_short,
pub head: *mut node_st,
pub sister: *mut arc_st,
}Expand description
Arc
Fields§
§r_cap: c_short§cost: c_shortresidual capasity
head: *mut node_stcost of the arc
sister: *mut arc_sthead node
Trait Implementations§
Auto Trait Implementations§
impl Freeze for arc_st
impl RefUnwindSafe for arc_st
impl !Send for arc_st
impl !Sync for arc_st
impl Unpin for arc_st
impl UnwindSafe for arc_st
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