Searched defs:Immovable (Results 1 – 5 of 5) sorted by relevance
327 struct Immovable { struct328 static unsigned Constructions;329 static unsigned Destructions;330 int val;331 explicit Immovable(int val) : val(val) { in Immovable() argument334 ~Immovable() { in ~Immovable()337 static void ResetCounts() { in ResetCounts()
287 struct Immovable { struct288 Immovable() {} in Immovable() function
40 struct Immovable { struct43 Immovable(MoveOnly&& value) : value_(std::move(value)) {} in Immovable() argument48 int value() const { return value_.value(); } in value()51 MoveOnly value_;
663 pub(crate) struct Immovable { struct664 _pin: PhantomPinned,667 impl Immovable { impl673 unsafe impl MoveNew for Immovable { implementation
148 class Immovable { class151 explicit Immovable(int val) : val_(val) {} in Immovable() function in pw::__anon829849410111::Immovable