1pub trait AsValueRef<T> { 2 fn as_value_ref(&self) -> &T; 3 fn as_value_mutref(&mut self) -> &mut T; 4}