1use crate::records::bound::Bound; 2 3impl<T> Bound<T> { 4 pub fn bound_t(bound_to: T) -> Self { 5 Self { boundTo: bound_to } 6 } 7}