Lines Matching full:send
171 T: Writer + Send + Sync + 'static,
197 T: BinaryWriter + Send + Sync + 'static,
239 T: Send + Sync + 'static,
240 F: Fn(&T, &mut fmt::Formatter<'_>) -> fmt::Result + Send + Sync,
256 T: Writer + Reader + Send + Sync + 'static,
272 T: BinaryWriter + BinaryReader + Send + Sync + 'static,
292 T: Send + Sync + 'static,
293 F: Fn(&T, &mut fmt::Formatter<'_>) -> fmt::Result + Send + Sync,
294 W: Fn(&T, &mut UserSliceReader) -> Result + Send + Sync,
315 T: Reader + Send + Sync + 'static,
332 T: BinaryReader + Send + Sync + 'static,
348 T: Send + Sync + 'static,
349 W: Fn(&T, &mut UserSliceReader) -> Result + Send + Sync,
553 pub fn read_only_file<T: Writer + Send + Sync + 'static>(&self, name: &CStr, data: &'data T) {
563 pub fn read_binary_file<T: BinaryWriter + Send + Sync + 'static>(
584 T: Send + Sync + 'static,
585 F: Fn(&T, &mut fmt::Formatter<'_>) -> fmt::Result + Send + Sync,
599 pub fn read_write_file<T: Writer + Reader + Send + Sync + 'static>(
615 pub fn read_write_binary_file<T: BinaryWriter + BinaryReader + Send + Sync + 'static>(
641 T: Send + Sync + 'static,
642 F: Fn(&T, &mut fmt::Formatter<'_>) -> fmt::Result + Send + Sync,
643 W: Fn(&T, &mut UserSliceReader) -> Result + Send + Sync,
658 pub fn write_only_file<T: Reader + Send + Sync + 'static>(&self, name: &CStr, data: &'data T) {
669 pub fn write_binary_file<T: BinaryReader + Send + Sync + 'static>(
689 T: Send + Sync + 'static,
690 W: Fn(&T, &mut UserSliceReader) -> Result + Send + Sync,