1// This is free and unencumbered software released into the public domain. 2 3pub trait MaybeDurable { 4 fn is_durable(&self) -> bool { 5 false // by default 6 } 7 8 fn is_nondurable(&self) -> bool { 9 !self.is_durable() 10 } 11}