Lines Matching defs:ProtobufAbsPath
19 pub struct ProtobufAbsPath { struct
28 impl Default for ProtobufAbsPath { argument
42 impl Deref for ProtobufAbsPath { implementation
86 pub fn to_owned(&self) -> ProtobufAbsPath { in to_owned()
121 impl ProtobufAbsPath { implementation
135 pub fn try_new(path: &str) -> Option<ProtobufAbsPath> { in try_new()
143 pub fn new<S: Into<String>>(path: S) -> ProtobufAbsPath { in new()
154 pub fn new_from_rel(path: &str) -> ProtobufAbsPath { in new_from_rel()
169 pub fn package_from_file_proto(file: &FileDescriptorProto) -> ProtobufAbsPath { in package_from_file_proto()
173 pub fn package_from_file_descriptor(file: &FileDescriptor) -> ProtobufAbsPath { in package_from_file_descriptor()
177 pub fn from_message(message: &MessageDescriptor) -> ProtobufAbsPath { in from_message()
181 pub fn concat(a: &ProtobufAbsPathRef, b: &ProtobufRelPathRef) -> ProtobufAbsPath { in concat()
187 pub fn from_path_without_dot(path: &str) -> ProtobufAbsPath { in from_path_without_dot()
194 pub fn from_path_maybe_dot(path: &str) -> ProtobufAbsPath { in from_path_maybe_dot()
255 impl From<&'_ str> for ProtobufAbsPath { implementation
261 impl From<String> for ProtobufAbsPath { implementation
273 impl fmt::Display for ProtobufAbsPath { implementation