File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ pub struct TerminalProxy {
6161}
6262
6363impl TerminalProxy {
64- pub fn read_lock ( & self ) -> TerminalAccessor {
64+ pub fn read_lock ( & self ) -> TerminalAccessor < ' _ > {
6565 TerminalAccessor {
6666 internal : self . internal . lock ( ) ,
6767 }
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ impl ShellController {
6161 self . shell_receiver . try_recv_event ( )
6262 }
6363
64- pub fn read_contents ( & self ) -> TerminalAccessor {
64+ pub fn read_contents ( & self ) -> TerminalAccessor < ' _ > {
6565 self . shell_receiver . read_contents ( )
6666 }
6767
@@ -117,7 +117,7 @@ impl ShellReceiver {
117117 }
118118 }
119119
120- pub fn read_contents ( & self ) -> TerminalAccessor {
120+ pub fn read_contents ( & self ) -> TerminalAccessor < ' _ > {
121121 self . proxy . read_lock ( )
122122 }
123123}
You can’t perform that action at this time.
0 commit comments