1use crate::records::state_dot::StateDot; 2use crate::records::to_dot_options::ToDotOptions; 3 4impl StateDot { 5 pub fn state_dot_state_dot(opts: ToDotOptions) -> Self { 6 Self::new(opts) 7 } 8}