Re: [rust-dev] Private trait items

2014-05-04 Thread Simon Ruggier
Hi Tommi, I think that, rather than creating a second fork, you'd want to create a second git branch in same repository that you cloned from the original fork, commit your second RFC in the new branch you just made, push that branch back out to github, and then use the second branch to create your

Re: [rust-dev] Private trait items

2014-04-22 Thread Tommi
No one? I understand that a part of the reason the RFC process is made so complex is that it filters out idiots like me. But I think this one is a pretty important design choice that Rust is about to get wrong. On 2014-04-18, at 6:27, Tommi rusty.ga...@icloud.com wrote: Could someone please

Re: [rust-dev] Private trait items

2014-04-22 Thread Flaper87
2014-04-22 15:45 GMT+02:00 Tommi rusty.ga...@icloud.com: No one? I understand that a part of the reason the RFC process is made so complex is that it filters out idiots like me. But I think this one is a pretty important design choice that Rust is about to get wrong. If the RFC process is

Re: [rust-dev] Private trait items

2014-04-22 Thread Brian Anderson
I'm not sure what you are asking for here. Have you submitted this as a pull request to http://github.com/rust-lang/rfcs? I do realize that the RFC process takes time to get things approved, but some have been, and I expect the rate of approvals to continue steadily. On 04/17/2014 08:27 PM,

Re: [rust-dev] Private trait items

2014-04-22 Thread Tommi
The complex part of the process is figuring out how GitHub works. The problem I'm having with GitHub (as far as I can tell) is either (1) creating a fork or (2) submitting a pull request of the fork I've created (I'm not sure). Creating the first fork of /rust-lang/rfcs was easy: I just clicked

Re: [rust-dev] Private trait items

2014-04-22 Thread Tommi
On 2014-04-22, at 21:44, Brian Anderson bander...@mozilla.com wrote: I'm not sure what you are asking for here. Have you submitted this as a pull request to http://github.com/rust-lang/rfcs? No, I haven't made the pull request, because I don't know how to do that (or perhaps I would know how

Re: [rust-dev] Private trait items

2014-04-22 Thread Felix S. Klock II
Tommi (cc'ing rust-dev)- I recommend you make a small fake github repository of your own, and learn the github workflow directly by forking that (perhaps with a separate fresh dummy github user account). I am not being facetious; I did a lot of that when I was first getting my bearings using

Re: [rust-dev] Private trait items

2014-04-22 Thread Liigo Zhuang
It's easy to submit a pull request, for a git programmer. My difficulty is the weak of English level to write a so long rfc. 2014年4月23日 上午5:57于 Tommi rusty.ga...@icloud.com写道: On 2014-04-22, at 21:44, Brian Anderson bander...@mozilla.com wrote: I'm not sure what you are asking for here. Have

[rust-dev] Private trait items

2014-04-17 Thread Tommi
Could someone please commit this RFC for me, thank you: - Start Date: 2014-04-18 - RFC PR #: - Rust Issue #: # Summary I propose the ability to set trait items (i.e. just methods currently) private as well as public in order to expand the scope of possible use cases of provided methods (i.e.