menu

destack:ops

import destack:ops

Structs

  1. BreakBreaking Try branch.
  2. ContinueContinuing Try branch.

Enums

  1. OrderingResult of a comparison operation.

Newtypes

  1. ControlFlowResult of branching a Try carrier.

Newtype interfaces

  1. AddInterface for the + operator.
  2. AndInterface for the & operator.
  3. CompareInterface for total comparison and ordering.
  4. DebugInterface for developer-facing string representation.
  5. DereferenceInterface for dereference projection *a.
  6. DisplayInterface for user-facing string representation.
  7. DivideInterface for the / operator.
  8. EqualMarker interface for total equality.
  9. FromResidualTarget protocol for rebuilding a carrier from a propagated residual.
  10. HashA value that can feed itself into a hasher.
  11. HasherA stateful hash sink.
  12. IndexInterface for index access a[i].
  13. IndexSetInterface for index assignment a[i] = v.
  14. MultiplyInterface for the * operator.
  15. NegateInterface for unary -.
  16. NotInterface for the ~ operator.
  17. OrInterface for the | operator.
  18. PartialCompareInterface for partial comparison.
  19. PartialEqualInterface for partial equality.
  20. PlusInterface for unary +.
  21. PowerInterface for the ** operator.
  22. RemainderInterface for the % operator.
  23. ShiftLeftInterface for the << operator.
  24. ShiftRightInterface for the >> operator.
  25. ShiftRightUnsignedInterface for the >>> operator.
  26. SubtractInterface for the - operator.
  27. TryProtocol for values that work with ?, ??, and postfix !.
  28. XorInterface for the ^ operator.